mirror of
https://gitgud.io/AbstractConcept/rimworld-animations-patch.git
synced 2024-08-15 00:43:27 +00:00
16 lines
324 B
C#
16 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); }
|
|
}
|
|
}
|
|
}
|