mirror of
https://gitgud.io/c0ffeeeeeeee/rimworld-animations.git
synced 2026-06-18 19:35:58 +00:00
22 lines
456 B
C#
22 lines
456 B
C#
using RimWorld;
|
|
using rjw;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Rimworld_Animations
|
|
{
|
|
[DefOf]
|
|
public static class VoiceDefOf
|
|
{
|
|
static VoiceDefOf()
|
|
{
|
|
DefOfHelper.EnsureInitializedInCtor(typeof(VoiceDefOf));
|
|
}
|
|
|
|
public static VoiceDef Voice_HumanMale;
|
|
public static VoiceDef Voice_HumanFemale;
|
|
}
|
|
}
|