public static string GetMessage(BusterType type, bool start) { if (start) { return("START_" + type.ToString()); } else { return("END_" + type.ToString()); } }
public Buster(BusterType type) { start_msg = "START_" + type.ToString(); end_msg = "END_" + type.ToString(); b_type = type; }