mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
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();
|
|
}
|
|
}
|