BaseCreateModule.cs 414 B

12345678910111213141516171819202122
  1. #if ODIN_INSPECTOR
  2. using Sirenix.OdinInspector;
  3. namespace ET.PackageManager.Editor
  4. {
  5. /// <summary>
  6. /// 基类 自动创建模块
  7. /// 由其他模块继承后实现
  8. /// </summary>
  9. [HideReferenceObjectPicker]
  10. public abstract class BaseCreateModule
  11. {
  12. public virtual void Initialize()
  13. {
  14. }
  15. public virtual void OnDestroy()
  16. {
  17. }
  18. }
  19. }
  20. #endif