Added Tutorial class

This commit is contained in:
Anuken
2019-08-03 19:47:57 -04:00
parent 4ee6f60531
commit a65592d511
2 changed files with 24 additions and 1 deletions

View 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;
}
}