Ejemplo n.º 1
0
 public GameDataManager(Player local, Player remote, string roomId = "1234567890123456")
 {
     localPlayer   = local;
     remotePlayer  = remote;
     protectedData = new ProtectedData(localPlayer.PlayerId, remotePlayer.PlayerId, roomId);
 }
Ejemplo n.º 2
0
 public LeastCountManager(MyPlayer local, MyPlayer remote)
 {
     localPlayer   = local;
     remotePlayer  = remote;
     protectedData = new ProtectedData(localPlayer.PlayerId, remotePlayer.PlayerId);
 }