Package rosequartz

Class Project

java.lang.Object
rosequartz.Project

public abstract class Project extends Object
The main class of your game. This is the entry point for your game logic.
  • 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