コード例 #1
0
 public static string GetMessage(BusterType type, bool start)
 {
     if (start)
     {
         return("START_" + type.ToString());
     }
     else
     {
         return("END_" + type.ToString());
     }
 }
コード例 #2
0
 public Buster(BusterType type)
 {
     start_msg = "START_" + type.ToString();
     end_msg   = "END_" + type.ToString();
     b_type    = type;
 }