├── BaseSingleton.cs ├── BaseSingleton.cs.meta ├── Editor.meta ├── Editor ├── SingletonEditor.cs ├── SingletonEditor.cs.meta ├── SingletonUpdaterEditor.cs ├── SingletonUpdaterEditor.cs.meta ├── yaSingleton Editor.asmdef └── yaSingleton Editor.asmdef.meta ├── Helpers.meta ├── Helpers ├── ScriptableObjectExtensions.cs ├── ScriptableObjectExtensions.cs.meta ├── SingletonUpdater.cs └── SingletonUpdater.cs.meta ├── LICENSE ├── LICENSE.meta ├── LazySingleton.cs ├── LazySingleton.cs.meta ├── README.md ├── README.md.meta ├── Singleton.cs ├── Singleton.cs.meta ├── Utility.meta ├── Utility ├── ExecutorBehavior.cs ├── ExecutorBehavior.cs.meta ├── PreloadedScriptableObject.cs └── PreloadedScriptableObject.cs.meta ├── yaSingleton.asmdef └── yaSingleton.asmdef.meta /BaseSingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/BaseSingleton.cs -------------------------------------------------------------------------------- /BaseSingleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/BaseSingleton.cs.meta -------------------------------------------------------------------------------- /Editor.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 8eb63d63a6d44ff08cfdb5ef040b3662 3 | timeCreated: 1523788464 -------------------------------------------------------------------------------- /Editor/SingletonEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Editor/SingletonEditor.cs -------------------------------------------------------------------------------- /Editor/SingletonEditor.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: c2c4aa88a77e4fe292556f7270228973 3 | timeCreated: 1523427362 -------------------------------------------------------------------------------- /Editor/SingletonUpdaterEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Editor/SingletonUpdaterEditor.cs -------------------------------------------------------------------------------- /Editor/SingletonUpdaterEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Editor/SingletonUpdaterEditor.cs.meta -------------------------------------------------------------------------------- /Editor/yaSingleton Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Editor/yaSingleton Editor.asmdef -------------------------------------------------------------------------------- /Editor/yaSingleton Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Editor/yaSingleton Editor.asmdef.meta -------------------------------------------------------------------------------- /Helpers.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 73d57a080ff24f8cacb60bdba650469f 3 | timeCreated: 1523943874 -------------------------------------------------------------------------------- /Helpers/ScriptableObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Helpers/ScriptableObjectExtensions.cs -------------------------------------------------------------------------------- /Helpers/ScriptableObjectExtensions.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 743e34a6697e4318a7db7027c223af2b 3 | timeCreated: 1551028708 -------------------------------------------------------------------------------- /Helpers/SingletonUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Helpers/SingletonUpdater.cs -------------------------------------------------------------------------------- /Helpers/SingletonUpdater.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 9d386f70ee3d4afaa089401f68e77cca 3 | timeCreated: 1520229617 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/LICENSE.meta -------------------------------------------------------------------------------- /LazySingleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/LazySingleton.cs -------------------------------------------------------------------------------- /LazySingleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/LazySingleton.cs.meta -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/README.md -------------------------------------------------------------------------------- /README.md.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 636b4c85dff84fa5a1d5a8a3701472e1 3 | timeCreated: 1524297427 -------------------------------------------------------------------------------- /Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Singleton.cs -------------------------------------------------------------------------------- /Singleton.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Singleton.cs.meta -------------------------------------------------------------------------------- /Utility.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 30c15e8dfd2f4663b18a755a9f8df91c 3 | timeCreated: 1523943886 -------------------------------------------------------------------------------- /Utility/ExecutorBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Utility/ExecutorBehavior.cs -------------------------------------------------------------------------------- /Utility/ExecutorBehavior.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: fe96daadb6cc46cda6d1c9713c054761 3 | timeCreated: 1520668867 -------------------------------------------------------------------------------- /Utility/PreloadedScriptableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/Utility/PreloadedScriptableObject.cs -------------------------------------------------------------------------------- /Utility/PreloadedScriptableObject.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 65a2da1e68d04aea9cd5f0bc964dd7d1 3 | timeCreated: 1551028921 -------------------------------------------------------------------------------- /yaSingleton.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/yaSingleton.asmdef -------------------------------------------------------------------------------- /yaSingleton.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyJordanParker/yaSingleton/HEAD/yaSingleton.asmdef.meta --------------------------------------------------------------------------------