EtherDuels.Config.Configuration.SetRightKey C# (CSharp) Method

SetRightKey() public method

Sets the turn-right key for the player specified by the playerID.
public SetRightKey ( int playerID, Keys key ) : void
playerID int The ID which specifies the player.
key Keys The new key which needs to be assigned.
return void
        public void SetRightKey(int playerID, Keys key)
        {
            keyConfigurations[playerID].Right = key;
        }