RoleLeagueTempComponent.cs 367 B

1234567891011121314
  1. using ET.EventType;
  2. namespace ET
  3. {
  4. //玩家联盟缓存数据
  5. public class RoleLeagueTempComponent : Entity, IAwake, IDestroy, ITransfer
  6. {
  7. public long leagueId = 0;
  8. public RoleLeagueChange leagueChange = new RoleLeagueChange();
  9. public RoleJoinLeagueQuestion roleJoinLeagueQuestion = new RoleJoinLeagueQuestion();
  10. }
  11. }