test.android
Class Game

java.lang.Object
  extended by env3d.android.EnvMobileGame
      extended by test.android.Game

public class Game
extends EnvMobileGame


Field Summary
 
Fields inherited from class env3d.android.EnvMobileGame
env
 
Constructor Summary
Game()
           
 
Method Summary
 void loop()
          The loop() method is called automatically before every screen update.
static void main(java.lang.String[] args)
           
 void setup()
          Instead of putting the setup code in the constructor, put it in the setup() method.
 
Methods inherited from class env3d.android.EnvMobileGame
getEnv, setEnv, start
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Game

public Game()
Method Detail

setup

public void setup()
Description copied from class: EnvMobileGame
Instead of putting the setup code in the constructor, put it in the setup() method.

Specified by:
setup in class EnvMobileGame

loop

public void loop()
Description copied from class: EnvMobileGame
The loop() method is called automatically before every screen update. No need to write an explicit loop.

Specified by:
loop in class EnvMobileGame

main

public static void main(java.lang.String[] args)