Package rosequartz
Class Project
java.lang.Object
rosequartz.Project
The main class of your game.
This is the entry point for your game logic.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidmain()The main method gets called at the start of your game.
-
Constructor Details
-
Project
public Project()
-
-
Method Details
-
main
public abstract void main()The main method gets called at the start of your game. It will only get called once. Use it to create and initialize things in your game. To do things every frame (like updates and rendering), use the ECB.- See Also:
ECB
-