コード例 #1
0
 private static void StartCmdDraw(Player player, Command cmd) //for future use with math cmds such as /Spring and /PolarRose
 {
     try
     {
         StartSpringDraw operation = new StartSpringDraw(player, cmd);
         DrawOperationBegin(player, cmd, operation);
     }
     catch (Exception e)
     {
         player.Message("Error: " + e.Message);
     }
 }
コード例 #2
0
ファイル: MathCommands.cs プロジェクト: Rhinovex/LegendCraft
 //for future use with math cmds such as /Spring and /PolarRose
 private static void StartCmdDraw(Player player, Command cmd)
 {
     try
     {
         StartSpringDraw operation = new StartSpringDraw(player, cmd);
         DrawOperationBegin(player, cmd, operation);
     }
     catch (Exception e)
     {
         player.Message("Error: " + e.Message);
     }
 }