| 1234567891011 |
- using System.Collections.Generic;
- namespace ET
- {
- public class RobotCaseDispatcherComponent: Entity, IAwake, ILoad
- {
- public static RobotCaseDispatcherComponent Instance;
-
- public Dictionary<int, IRobotCase> Dictionary = new Dictionary<int, IRobotCase>();
- }
- }
|