diff --git a/Assets/GameScripts/HotFix/GameBase/Attribute.cs b/Assets/GameScripts/HotFix/GameBase/Attribute.cs new file mode 100644 index 00000000..1c7fbddc --- /dev/null +++ b/Assets/GameScripts/HotFix/GameBase/Attribute.cs @@ -0,0 +1,33 @@ +using System; + +namespace TEngine +{ + #region Attribute + + [AttributeUsage(AttributeTargets.Class)] + public class UpdateAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class FixedUpdateAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class LateUpdateAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class RoleLoginAttribute : Attribute + { + } + + [AttributeUsage(AttributeTargets.Class)] + public class RoleLogoutAttribute : Attribute + { + } + + #endregion +} \ No newline at end of file