forked from project-redbud/FunGame-Core
12 lines
264 B
C#
12 lines
264 B
C#
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IBaseEntity : IEquatable<IBaseEntity>
|
|
{
|
|
public long Id { get; }
|
|
public Guid Guid { get; }
|
|
public string Name { get; }
|
|
|
|
public string GetIdName();
|
|
}
|
|
}
|