Skip to content

Instantly share code, notes, and snippets.

@ar-android
Created May 15, 2019 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ar-android/830d79368fabad1ae93a06bba2390aa2 to your computer and use it in GitHub Desktop.
Save ar-android/830d79368fabad1ae93a06bba2390aa2 to your computer and use it in GitHub Desktop.
Blueprint game engine LWJGL
package engine;
public interface IGameLogic {
void init() throws Exception;
void input(Window window);
void render(Window window);
void update(float interval);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment