FriendInfo.cs 341 B

123456789101112
  1. namespace ET
  2. {
  3. public class FriendInfo : Entity, IAwake, IDestroy, ISerializeToEntity
  4. {
  5. //由FriendType定义
  6. public int Type;
  7. //赠送状态,由ConstGiveGiftStatus枚举
  8. public int GiveGiftState;
  9. //领取赠送状态,由ConstBonusStatus枚举
  10. public int TakeGiftState;
  11. }
  12. }