맞고의 룰을 구현한 클래스.
Ejemplo n.º 1
0
 public CGameRoom(CLocalServer server)
 {
     this.server            = server;
     this.engine            = new CGostopEngine();
     this.players           = new List <CPlayer>();
     this.received_protocol = new Dictionary <byte, PROTOCOL>();
 }
Ejemplo n.º 2
0
 public CGameRoom(CLocalServer server)
 {
     this.server = server;
     this.engine = new CGostopEngine();
     this.players = new List<CPlayer>();
     this.received_protocol = new Dictionary<byte, PROTOCOL>();
     this.order_manager = new CPlayerOrderManager();
 }
Ejemplo n.º 3
0
 public void reset(CGostopEngine engine)
 {
     this.random_cards = engine.get_random_cards(2);
 }
Ejemplo n.º 4
0
 public void reset(CGostopEngine engine)
 {
     this.random_cards = engine.get_random_cards(2);
 }