mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 20:49:33 +08:00
15 lines
307 B
C#
15 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Milimoe.FunGame.Core.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Entity
|
|
{
|
|
public interface IRelateCharacter
|
|
{
|
|
public Character? Character { get; set; }
|
|
}
|
|
}
|