123456789101112131415161718192021222324252627282930313233343536 |
- using System.Collections.Generic;
- namespace ET.Server
- {
- [ComponentOf(typeof(Room))]
- public class HGHHMainCheckerComponent: Entity, IAwake, IDestroy, IUpdate
- {
-
- public bool Flag { get; set; }
-
- public int Time { get; set; }
-
- public int State { get; set; }
-
- public Player[] Players { get; set; }
-
- public int CurrentRound { get; set; }
-
- public int ZhuangPos { get; set; }
-
- public int[] Rand { get; set; }
-
- public Player CurrentPlayer { get; set; }
-
- public int DisCard { get; set; }
-
- public Player DisCardPlayer { get; set; }
-
- public int DrawCard { get; set; }
-
- public Player DrawCardPlayer { get; set; }
-
- public List<int> CardList { get; set; }
- }
- }
|