Risk1.Player.Player C# (CSharp) Method

Player() public method

public Player ( string n, bool human, bool active ) : System
n string
human bool
active bool
return System
        public Player(string n, bool human, bool active)
        {
            this.name = n;
            isHuman = human;
            isActive = active;
        }

Same methods

Player::Player ( ) : System