Example #1
0
 public Server(ChannelC2s red2Svr, ChannelS2c svr2Red,
               ChannelC2s blue2Svr, ChannelS2c svr2Blue)
 {
     chRed2Svr  = red2Svr;
     chSvr2Red  = svr2Red;
     chBlue2Svr = blue2Svr;
     chSvr2Blue = svr2Blue;
 }
 public Client(bool bRed, ChannelC2s c2s, ChannelS2c s2c)
 {
     isRed      = bRed;
     c2sChannel = c2s;
     s2cChannel = s2c;
 }