mirror of
http://47.107.252.169:3000/Roguelite-Game-Developing-Team/Gen_Hack-and-Slash-Roguelite.git
synced 2025-11-20 03:47:13 +08:00
13 lines
321 B
C#
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
|
||
|
|
{
|
||
|
|
}
|
||
|
|
}
|