2023-03-31 20:34:40 +08:00

9 lines
184 B
C#

namespace Milimoe.FunGame.Core.Interface.Entity
{
public interface IActiveEnable
{
public bool Active { get; set; }
public bool Enable { get; set; }
}
}