示例#1
0
文件: Match.cs 项目: longde123/grove
        public SavedMatch Save()
        {
            var savedMatch = new SavedMatch
            {
                Player1WinCount = Player1WinCount,
                Player2WinCount = Player2WinCount,
                SavedGame       = Game.Save(),
                Looser          = _looser
            };

            return(savedMatch);
        }
示例#2
0
        public SavedMatch Save()
        {
            var savedMatch = new SavedMatch
            {
              Player1WinCount = Player1WinCount,
              Player2WinCount = Player2WinCount,
              SavedGame = Game.Save(),
              Looser = _looser
            };

              return savedMatch;
        }