mirror of
https://github.com/Bragin-Stepan/project-entity.git
synced 2026-03-02 22:31:10 +00:00
11 lines
328 B
C#
11 lines
328 B
C#
namespace Assets._Project.Develop.Runtime.Utilities.SceneManagement
|
|
{
|
|
public static class Scenes
|
|
{
|
|
public const string GameEntryPoint = "GameEntryPoint";
|
|
public const string Empty = "Empty";
|
|
public const string MainMenu = "MainMenu";
|
|
public const string Gameplay = "Gameplay";
|
|
}
|
|
}
|