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