NorbiPeti
f30dcd251f
Added support for getting the player's current building mode (build, color, config, blueprint) Added support for getting the current game's mode (building, playing, prefab etc.)
23 lines
No EOL
453 B
C#
23 lines
No EOL
453 B
C#
namespace GamecraftModdingAPI.App
|
|
{
|
|
public enum CurrentGameMode
|
|
{
|
|
None,
|
|
/// <summary>
|
|
/// Building a game
|
|
/// </summary>
|
|
Build,
|
|
/// <summary>
|
|
/// Playing a game
|
|
/// </summary>
|
|
Play,
|
|
/// <summary>
|
|
/// Viewing a prefab
|
|
/// </summary>
|
|
View,
|
|
/// <summary>
|
|
/// Viewing a tutorial
|
|
/// </summary>
|
|
Tutorial
|
|
}
|
|
} |