| 123456789101112 |
- namespace ET
- {
- public class FriendInfo : Entity, IAwake, IDestroy, ISerializeToEntity
- {
- //由FriendType定义
- public int Type;
- //赠送状态,由ConstGiveGiftStatus枚举
- public int GiveGiftState;
- //领取赠送状态,由ConstBonusStatus枚举
- public int TakeGiftState;
- }
- }
|