コード例 #1
0
ファイル: ChatCommand.cs プロジェクト: timfel/Atlas
 public virtual void Invoke(ChatCommandContext context)
 {
     throw new NotSupportedException("Base ChatCommand class does not Invoke()");
 }
コード例 #2
0
ファイル: ChatCommand.cs プロジェクト: timfel/Atlas
 public virtual bool CanInvoke(ChatCommandContext context)
 {
     return(false);
 }