Initial commit

This commit is contained in:
AbstractConcept 2022-11-02 00:56:22 -05:00
parent fe7c28ad8e
commit 55402b9891
54 changed files with 2515 additions and 92 deletions

View file

@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using Verse;
using RimWorld;
namespace Privacy_Please
{
public static class DebugMode
{
public static void Message(string text)
{
if (BasicSettings.debugMode)
{ Log.Message("[DEBUG] " + text); }
}
}
}