You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
347 B
29 lines
347 B
11 years ago
|
package mightypork.rogue.textures;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* List of texture quads for GUIs
|
||
|
*
|
||
|
* @author MightyPork
|
||
|
*/
|
||
|
public class Tx {
|
||
|
|
||
|
// logo
|
||
|
public static TxQuad LOGO;
|
||
|
|
||
|
|
||
|
public static void initForSplash()
|
||
|
{
|
||
|
// splash logo
|
||
|
LOGO = TxQuad.fromSize(Textures.logo, 15, 9, 226, 132);
|
||
|
}
|
||
|
|
||
|
|
||
|
public static void init()
|
||
|
{
|
||
|
// title image (word art)
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|