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