zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Server/Model/Game/Entity/GlobalMethodComponent.cs

10 lines
200 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
{
2021-05-01 11:27:41 +08:00
public Dictionary<string, Func<object,ETTask>> methodDic = new();
2021-04-24 17:39:11 +08:00
}
}