123456789101112 |
- using System;
- namespace ET
- {
- [ComponentOf(typeof(Scene))]
- [ChildOf(typeof(StartFightRoomInfo))]
- public class StartFightRoomComponment : Entity,IAwake,IDestroy
- {
- public StartFightRoomInfo startFightRoomInfo = new StartFightRoomInfo();
- }
- }
|