mirror of
https://github.com/Xevion/RimWorld_ResearchWhatever.git
synced 2025-12-15 00:12:58 -06:00
1.0.4
This commit is contained in:
24
Source/ResearchWhatever13/ResearchWhateverGameComp.cs
Normal file
24
Source/ResearchWhatever13/ResearchWhateverGameComp.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using Verse;
|
||||
using RimWorld;
|
||||
|
||||
namespace ResearchWhatever
|
||||
{
|
||||
public enum ResearchWhateverNotifyMode { rwnDefault, rwnLetter, rwnNotice, rwnMute }
|
||||
public class ResearchWhateverGameComp : GameComponent
|
||||
{
|
||||
public ResearchWhateverGameComp()
|
||||
{
|
||||
}
|
||||
public ResearchWhateverGameComp(Game game)
|
||||
{
|
||||
}
|
||||
public override void ExposeData()
|
||||
{
|
||||
Scribe_Values.Look(ref notifyMode, "NotifyMode");
|
||||
}
|
||||
private ResearchWhateverNotifyMode notifyMode = ResearchWhateverNotifyMode.rwnDefault;
|
||||
public ResearchWhateverNotifyMode NotifyMode { get { return notifyMode; } set { notifyMode = value; } }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user