mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2026-06-04 19:42:13 +00:00
12 lines
311 B
C#
12 lines
311 B
C#
namespace Oshima.FunGame.OshimaModules.BusinessSimulation.Interface
|
|
{
|
|
public interface IBusinessSimulationEntity
|
|
{
|
|
public string Category { get; }
|
|
public bool Enable { get; }
|
|
public Dictionary<string, string> SkillInfo { get; }
|
|
|
|
public void UpdateSkillInfo();
|
|
}
|
|
}
|