forked from project-redbud/FunGame-Core
9 lines
190 B
C#
9 lines
190 B
C#
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface ICharacter
|
|
{
|
|
public string FirstName { get; set; }
|
|
public string NickName { get; set; }
|
|
}
|
|
}
|