rimworld-animations-patch_m.../Source/Scripts/Utilities/DebugMode.cs

17 lines
324 B
C#

using System;
using System.Collections.Generic;
using Verse;
using RimWorld;
namespace Rimworld_Animations_Patch
{
public static class DebugMode
{
public static void Message(string text)
{
if (BasicSettings.debugMode)
{ Log.Message("[DEBUG] " + text); }
}
}
}