├── .gitignore ├── Assets ├── Editor.meta └── Editor │ ├── ConstantsGeneratorKit.cs │ └── ConstantsGeneratorKit.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/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/Assets/Editor.meta -------------------------------------------------------------------------------- /Assets/Editor/ConstantsGeneratorKit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/Assets/Editor/ConstantsGeneratorKit.cs -------------------------------------------------------------------------------- /Assets/Editor/ConstantsGeneratorKit.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/Assets/Editor/ConstantsGeneratorKit.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/LICENSE -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshLayers.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/NavMeshLayers.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZimM-LostPolygon/ConstantsGeneratorKit/HEAD/README.md --------------------------------------------------------------------------------