mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
22 lines
386 B
C#
22 lines
386 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Rimworld_Animations_Patch
|
|
{
|
|
public enum TabooStatus
|
|
{
|
|
NotTaboo = 0,
|
|
MinorTaboo = 1,
|
|
MajorTaboo = 2,
|
|
}
|
|
|
|
public enum RimNudeDataStatus
|
|
{
|
|
Unavailable = -1,
|
|
NotLoaded = 0,
|
|
Loaded = 1,
|
|
}
|
|
}
|