C# Class Pluton.Rust.Objects.ChatCommand

Show file Open project: Notulp/Pluton.Rust Class Usage Examples

Public Properties

Property Type Description
_command string
_description string
_usage string
callback CallbackDelegate
plugin BasePlugin

Public Methods

Method Description
ChatCommand ( ) : System
ChatCommand ( string command ) : System
setCallback ( CallbackDelegate function ) : ChatCommand
setCallback ( string function ) : ChatCommand
setCommand ( string command ) : ChatCommand
setDescription ( string description ) : ChatCommand
setUsage ( string usage ) : ChatCommand

Method Details

ChatCommand() public method

public ChatCommand ( ) : System
return System

ChatCommand() public method

public ChatCommand ( string command ) : System
command string
return System

setCallback() public method

public setCallback ( CallbackDelegate function ) : ChatCommand
function CallbackDelegate
return ChatCommand

setCallback() public method

public setCallback ( string function ) : ChatCommand
function string
return ChatCommand

setCommand() public method

public setCommand ( string command ) : ChatCommand
command string
return ChatCommand

setDescription() public method

public setDescription ( string description ) : ChatCommand
description string
return ChatCommand

setUsage() public method

public setUsage ( string usage ) : ChatCommand
usage string
return ChatCommand

Property Details

_command public property

public string _command
return string

_description public property

public string _description
return string

_usage public property

public string _usage
return string

callback public property

public CallbackDelegate callback
return CallbackDelegate

plugin public property

public BasePlugin plugin
return BasePlugin