13 lines
255 B
C#
13 lines
255 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Project.B.CharacterController
|
|
{
|
|
/// <summary>
|
|
/// 角色服务
|
|
/// </summary>
|
|
public interface ICharacterService
|
|
{
|
|
IDictionary<int, ICharacterController> Dictionary { get; }
|
|
}
|
|
}
|