Spritesheet generator for the tortuga game
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.
tortuga-spritegen/src/net/spritegen/StaticInitializer.java

28 lines
502 B

package net.spritegen;
import com.mykaruga.models.Models;
/**
* Initialization utility, initializing all the static stuff that is needed
* before starting main loop.
*
* @author Ondřej Hruška (MightyPork)
*/
public class StaticInitializer {
/**
* Init static things and start threads.<br>
* This is called on startup, even before the splash screen.
*/
public static void initOnStartup() {
Models.load();
}
/**
* Initialize all.
*/
public static void initPostLoad() {}
}