Added Tutorial class
This commit is contained in:
21
core/src/io/anuke/mindustry/game/Tutorial.java
Normal file
21
core/src/io/anuke/mindustry/game/Tutorial.java
Normal file
@@ -0,0 +1,21 @@
|
||||
package io.anuke.mindustry.game;
|
||||
|
||||
/** Handles tutorial state. */
|
||||
public class Tutorial{
|
||||
private TutorialStage stage = TutorialStage.values()[0];
|
||||
|
||||
public void reset(){
|
||||
stage = TutorialStage.values()[0];
|
||||
}
|
||||
|
||||
/** Goes on to the next tutorial step. */
|
||||
public void next(){
|
||||
|
||||
}
|
||||
|
||||
|
||||
public enum TutorialStage{
|
||||
intro;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user