ArkaliaCore.Game.Game.Commands.CommandParameters.GetBoolParameter C# (CSharp) Method

GetBoolParameter() public method

public GetBoolParameter ( int index ) : bool
index int
return bool
        public bool GetBoolParameter(int index)
        {
            return bool.Parse(this._parameters[index]);
        }