rjw-toys-and-masturbation/Source/Utils/SexToyUtility.cs

23 lines
521 B
C#
Raw Permalink Normal View History

2020-11-05 22:09:05 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Verse;
namespace RJW_ToysAndMasturbation {
[StaticConstructorOnStartup]
public static class SexToyUtility {
public static bool isRJWAnimationsLoaded = false;
static SexToyUtility() {
if(LoadedModManager.RunningMods.Any((ModContentPack x) => x.Name == "Rimworld-Animations")) {
isRJWAnimationsLoaded = true;
}
}
}
}