Files
horooko b91fe5adae feat: add SceneTemplateSettings and update boot configuration files
- Add ProjectSettings.asset for project settings management
- Update SampleScene.unity with latest scene configuration
- Update BootStateCode.cs enum values
- Update BootSettings.asset with current settings
2026-05-27 05:00:16 +07:00

10 lines
138 B
C#

namespace QuizPleaseTest.Boot.States
{
public enum BootStateCode
{
Splash = 0,
Load = 1,
Menu = 2
}
}