namespace KKAPI { /// /// Current gameplay mode the game is in /// public enum GameMode { /// /// Anywhere else, including main menu /// Unknown, /// /// Inside character maker (can be started from main menu or from class roster) /// Maker, /// /// Anywhere inside CharaStudio.exe /// Studio, /// /// Anywhere inside the main game. /// Includes everything after starting a new game from title screen and after loading a saved game. /// This means this includes story scenes, night menu, roaming around and h scenes inside story mode. /// This does not hoverwer include the character maker launched from within the class menu. /// MainGame } }