mirror of
https://gitgud.io/AbstractConcept/privacy-please.git
synced 2024-08-15 00:03:18 +00:00
16 lines
324 B
C#
16 lines
324 B
C#
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("[Privacy, Please!] " + text); }
|
|
}
|
|
}
|
|
}
|