コード例 #1
0
ファイル: Console.cs プロジェクト: kinifi/LE_IM
	public ConsoleCommand(string _command, string _description, CmdParameterType _parameterType,
	                      GameObject _target, string _messageExecuted)
	{
		command = _command; description = _description; parameterType = _parameterType;
		target = _target; messageExecuted = _messageExecuted;
	}
コード例 #2
0
 private void CreateCommand(string command, string description, CmdParameterType type, string functionName)
 {
     global::Console.AddCommand(new ConsoleCommand(command, description, type, base.gameObject, functionName));
 }
コード例 #3
0
ファイル: Console.cs プロジェクト: ATVLx/SnowHorse
 public ConsoleCommand(string _command, string _description, CmdParameterType _parameterType,
                       GameObject _target, string _messageExecuted)
 {
     command = _command; description = _description; parameterType = _parameterType;
     target  = _target; messageExecuted = _messageExecuted;
 }