Belot.BelotGame.BelotGame C# (CSharp) Метод

BelotGame() публичный Метод

Creates new belot game
public BelotGame ( Player south, Player east, Player north, Player west ) : System.Collections.Generic
south Player
east Player
north Player
west Player
Результат System.Collections.Generic
        public BelotGame( Player south, Player east, Player north, Player west )
        {
            _southPlayer = south;
            _eastPlayer = east;
            _northPlayer = north;
            _westPlayer = west;

            _southPlayer.SetPosition( PlayerPosition.South );
            _eastPlayer.SetPosition( PlayerPosition.East );
            _northPlayer.SetPosition( PlayerPosition.North );
            _westPlayer.SetPosition( PlayerPosition.West );

            _firstPlayer = _southPlayer;

            _deals = new List< Deal >();
        }