mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-12 22:44:35 +01:00
22 lines
673 B
C#
22 lines
673 B
C#
namespace MoleMole
|
|
{
|
|
public static class SceneData
|
|
{
|
|
public const string GAME_ENTRY_SCENE_NAME = "GameEntry";
|
|
|
|
public const string TEST_LEVEL_SCENE_NAME = "TestLevel01";
|
|
|
|
public const string MAIN_MENU_WITH_SPACESHIP_SCENE_NAME = "MainMenuWithSpaceship";
|
|
|
|
public const string MAIN_MENU_WITHOUT_SPACESHIP_SCENE_NAME = "MainMenuWithoutSpaceship";
|
|
|
|
public const string MAIN_MENU_WITH_SPACESHIP_WITH_UI_SCENE_NAME = "MainMenuWithSpaceshipWithUI";
|
|
|
|
public const string MAIN_MENU_WITHOUT_SPACESHIP_WITH_UI_SCENE_NAME = "MainMenuWithoutSpaceshipWithUI";
|
|
|
|
public const string LOADING_SCENE_NAME = "Loading";
|
|
|
|
public const string ISLAND_SCENE_NAME = "Island";
|
|
}
|
|
}
|