From 2258c138922c747e9abc2c73a4147368b8450c26 Mon Sep 17 00:00:00 2001 From: ALEXTANG <574809918@qq.com> Date: Sat, 20 May 2023 11:24:55 +0800 Subject: [PATCH] Create Attribute.cs --- .../GameScripts/HotFix/GameBase/Attribute.cs | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Assets/GameScripts/HotFix/GameBase/Attribute.cs 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