public static void PlayCriticalBreakSound(Thing target, Voice voice)
 {
     PlayVoicedSound(target, voice, CriticalBreakSounds.RandomElement());
 }
 public static void PlayFinishTaskSound(Thing target, Voice voice)
 {
     PlayVoicedSound(target, voice, FinishTaskSounds.RandomElement());
 }
 public static void PlayGreetingSound(Thing target, Voice voice)
 {
     PlayVoicedSound(target, voice, GreetingSounds.RandomElement());
 }
 public static void PlayAcceptTaskSound(Thing target, Voice voice)
 {
     PlayVoicedSound(target, voice, AcceptTaskSounds.RandomElement());
 }