コード例 #1
0
ファイル: GTPGoBoard.cs プロジェクト: tgiphil/GoTraxx
 protected void RegisterCommand(string command, GTPFunction gtpFunction, string type, string label, string parameters)
 {
     RegisteredCommands.Add(command.ToLower(), gtpFunction);
     AnalyzeCommands.Add(new AnalyzeCommand(command, type, label, parameters));
 }
コード例 #2
0
ファイル: GTPGoBoard.cs プロジェクト: tgiphil/GoTraxx
 protected void RegisterCommand(string command, GTPFunction gtpFunction)
 {
     RegisteredCommands.Add(command.ToLower(), gtpFunction);
 }