├── .gitignore ├── Assets ├── Scenes.meta ├── Scenes │ ├── Intro.unity │ ├── Intro.unity.meta │ ├── Menu.unity │ └── Menu.unity.meta ├── Scripts.meta └── Scripts │ ├── Intro.cs │ ├── Intro.cs.meta │ ├── Menu.cs │ ├── Menu.cs.meta │ ├── SimpleGameManager.cs │ └── SimpleGameManager.cs.meta ├── LICENSE ├── ProjectSettings ├── AudioManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshLayers.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── QualitySettings.asset ├── TagManager.asset └── TimeManager.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/Intro.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scenes/Intro.unity -------------------------------------------------------------------------------- /Assets/Scenes/Intro.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scenes/Intro.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scenes/Menu.unity -------------------------------------------------------------------------------- /Assets/Scenes/Menu.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scenes/Menu.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/Intro.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/Intro.cs -------------------------------------------------------------------------------- /Assets/Scripts/Intro.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/Intro.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/Menu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/Menu.cs -------------------------------------------------------------------------------- /Assets/Scripts/Menu.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/Menu.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/SimpleGameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/SimpleGameManager.cs -------------------------------------------------------------------------------- /Assets/Scripts/SimpleGameManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/Assets/Scripts/SimpleGameManager.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bttfgames/SimpleGameManager/HEAD/README.md --------------------------------------------------------------------------------