コード例 #1
0
ファイル: GameVM.cs プロジェクト: Camel-RD/ZoleOnline
        private void MockData()
        {
            PlayerName1 = "Askolds";
            PlayerName2 = "Aivars";
            PlayerName3 = "Haralds";
            var pr = new PointsRow(4, -2, -2);

            PointsRows.Add(pr);
            PointsRows.Add(pr);
        }
コード例 #2
0
ファイル: GameVM.cs プロジェクト: Camel-RD/ZoleOnline
        public PointsRow Copy()
        {
            var new_row = new PointsRow()
            {
                Points1 = Points1,
                Points2 = Points2,
                Points3 = Points3
            };

            return(new_row);
        }