Files
project-entity/Assets/_Project/Develop/Runtime/Constants/Scenes.cs
2026-02-18 23:02:28 +05:00

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";
}
}