Files
Gen_Hack-and-Slash-Roguelit…/Client/Assets/Scripts/Base/Attributes.cs
2025-07-16 13:05:04 +08:00

13 lines
321 B
C#

using System;
namespace Base
{
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = true)]
public class NeedSaveAttribute : Attribute
{
}
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false, Inherited = true)]
public class UnSaveAttribute : Attribute
{
}
}