Inheritance: FuncDrawOperation
Example #1
0
 private static void FuncFHandler(Player player, Command cmd)
 {
     try {
         FuncDrawOperation operation = new FuncDrawOperationFill(player, cmd);
         DrawOperationBegin(player, cmd, operation);
     } catch (Exception e) {
         player.Message("Error: " + e.Message);
     }
 }
Example #2
0
 private static void FuncFHandler(Player player, Command cmd)
 {
     try
     {
         FuncDrawOperation operation = new FuncDrawOperationFill(player, cmd);
         DrawOperationBegin(player, cmd, operation);
     }
     catch (Exception e)
     {
         player.Message("Error: " + e.Message);
     }
 }