Beispiel #1
0
 protected RouletteClient(RouletteSession rouletteSession, string name)
 {
     _rouletteSession = rouletteSession;
     _balance         = Config.BasicBalance;
     Name             = name;
 }
Beispiel #2
0
 public WebSocketRouletteClient(WebSocket webSocket, RouletteSession rouletteSession, string name)
     : base(rouletteSession, name)
 {
     _webSocket = webSocket;
 }