| 1234567891011121314151617181920212223 |
- using System;
- using ETModel;
- namespace ETHotfix
- {
- [ObjectSystem]
- public class MailBoxComponentAwakeSystem : AwakeSystem<MailBoxComponent>
- {
- public override void Awake(MailBoxComponent self)
- {
- self.MailboxType = MailboxType.MessageDispatcher;
- }
- }
- [ObjectSystem]
- public class MailBoxComponentAwake1System : AwakeSystem<MailBoxComponent, MailboxType>
- {
- public override void Awake(MailBoxComponent self, MailboxType mailboxType)
- {
- self.MailboxType = mailboxType;
- }
- }
- }
|