Skip to content

Commit

Permalink
refactor: remove last activate
Browse files Browse the repository at this point in the history
  • Loading branch information
SverreNystad committed Apr 17, 2024
1 parent 90b39a6 commit 20755e6
Showing 1 changed file with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ public abstract class State {
protected List<Entity> buttons;
protected Controllers defaultControllers;
protected UUID yourId;
protected boolean hasBeenLateActivated = false;

protected State(Controllers defaultControllers, UUID yourId) {
this.defaultControllers = defaultControllers;
Expand All @@ -34,11 +33,4 @@ public void init() {
* Activates the state, setting up the ECSManager and the buttons.
*/
protected abstract void activate();

/**
*/
public void lateActivate() {
hasBeenLateActivated = true;
}

}

0 comments on commit 20755e6

Please sign in to comment.