mirror of
https://github.com/vegapnk/RJW-Genes.git
synced 2024-08-15 00:23:31 +00:00
Added Settings for RJW Genes, minor Cleanups
This commit is contained in:
parent
31e96bd5e3
commit
d6aeca7249
11 changed files with 115 additions and 45 deletions
22
Source/Settings/RJW_Genes_SettingsController.cs
Normal file
22
Source/Settings/RJW_Genes_SettingsController.cs
Normal file
|
@ -0,0 +1,22 @@
|
|||
using Verse;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RJW_Genes
|
||||
{
|
||||
public class RJW_Genes_SettingsController : Mod
|
||||
{
|
||||
public RJW_Genes_SettingsController(ModContentPack content) : base(content)
|
||||
{
|
||||
base.GetSettings<RJW_Genes_Settings>();
|
||||
}
|
||||
|
||||
public override string SettingsCategory()
|
||||
{
|
||||
return "RJW Genes - General";
|
||||
}
|
||||
public override void DoSettingsWindowContents(Rect inRect)
|
||||
{
|
||||
RJW_Genes_Settings.DoWindowContents(inRect);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue