CustomMethod.cs 484 B

123456789101112131415161718192021222324
  1. using System;
  2. namespace Fort23.Core
  3. {
  4. public enum CustomMethodType
  5. {
  6. Awake,
  7. Update,
  8. LateUpdate,
  9. Dispose,
  10. Destroy,
  11. }
  12. [AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]
  13. public class CustomMethod : Attribute
  14. {
  15. public CustomMethodType CustomMethodType;
  16. public CustomMethod(CustomMethodType customMethodType)
  17. {
  18. this.CustomMethodType = customMethodType;
  19. }
  20. }
  21. }