10 lines
197 B
C#
10 lines
197 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace ET
|
|||
|
{
|
|||
|
public class GlobalMethodComponent:Entity
|
|||
|
{
|
|||
|
public Dictionary<string, Action<string[]>> methodDic = new();
|
|||
|
}
|
|||
|
}
|