DungeonGenerationPlus_Letha.../DunGenPlus/DunGenPlus/PluginConfig.cs
LadyAliceMargatroid 4754677ae3 Added more debug messages
The last node of the alternate main paths will now end that main path

DevDebugWindow:
Added zoom in/out
Add Assets panel
BranchCapTileSets are added to the assets
2024-11-04 08:09:18 -08:00

18 lines
554 B
C#

using BepInEx.Configuration;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DunGenPlus {
internal class PluginConfig {
public static ConfigEntry<bool> EnableDevDebugTools;
public static void SetupConfig(ConfigFile cfg) {
EnableDevDebugTools = cfg.Bind(new ConfigDefinition("Dev", "Enable Dev Debug Tools"), false, new ConfigDescription("If enabled, allows the dev debug tools to be usable in the ship.\n\nPress LeftAlt + M to activate."));
}
}
}