project_files/Android-build/SDL-android-project/src/org/hedgewars/mobile/EngineProtocol/GameMode.java
author Xeli
Wed, 10 Aug 2011 01:22:52 +0200
branchhedgeroid
changeset 5532 3d7ac2b3b703
parent 5463 83c53a80f7ff
child 5621 ea796c83ea47
permissions -rw-r--r--
Fixed team colors in the UI, delete and a nullpointer bug when no teams are created
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5463
83c53a80f7ff datastructures for the different aspects of a gameconfiguration
Xeli
parents:
diff changeset
     1
package org.hedgewars.mobile.EngineProtocol;
83c53a80f7ff datastructures for the different aspects of a gameconfiguration
Xeli
parents:
diff changeset
     2
83c53a80f7ff datastructures for the different aspects of a gameconfiguration
Xeli
parents:
diff changeset
     3
public enum GameMode {
83c53a80f7ff datastructures for the different aspects of a gameconfiguration
Xeli
parents:
diff changeset
     4
		MODE_LOCAL, MODE_DEMO, MODE_NET, MODE_SAVE
83c53a80f7ff datastructures for the different aspects of a gameconfiguration
Xeli
parents:
diff changeset
     5
}