mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
13 lines
261 B
C#
13 lines
261 B
C#
|
using System;
|
|||
|
using Verse;
|
|||
|
|
|||
|
namespace Rimworld_Animations_Patch
|
|||
|
{
|
|||
|
public class CompProperties_PawnSexData : CompProperties
|
|||
|
{
|
|||
|
public CompProperties_PawnSexData()
|
|||
|
{
|
|||
|
base.compClass = typeof(CompPawnSexData);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|