CTT/Server/Model/Game/Entity/GlobalMethodComponent.cs

10 lines
197 B
C#
Raw Normal View History

2021-04-24 17:39:11 +08:00
using System;
using System.Collections.Generic;
namespace ET
{
public class GlobalMethodComponent:Entity
{
public Dictionary<string, Action<string[]>> methodDic = new();
}
}