mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
10 lines
191 B
C#
10 lines
191 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IRelateCharacter
|
|
{
|
|
public Character? Character { get; set; }
|
|
}
|
|
}
|