13 lines
190 B
Java
13 lines
190 B
Java
|
|
package me.firephoenix.ps3minigames.states;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author NieGestorben
|
||
|
|
* Copyright© (c) 2023, All Rights Reserved.
|
||
|
|
*/
|
||
|
|
public enum GameState {
|
||
|
|
|
||
|
|
STARTING,
|
||
|
|
RUNNING,
|
||
|
|
STOPPING
|
||
|
|
}
|