mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
9 lines
176 B
C#
9 lines
176 B
C#
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IActiveEnable
|
|
{
|
|
public bool IsActive { get; }
|
|
public bool Enable { get; }
|
|
}
|
|
}
|