mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
17 lines
396 B
C#
17 lines
396 B
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IBaseEntity : IEquatable<IBaseEntity>, IEnumerable<IBaseEntity>
|
|
{
|
|
public int Id { get; }
|
|
public Guid Guid { get; }
|
|
public string Name { get; }
|
|
}
|
|
}
|