Files
RimWorld_ResearchWhatever/Source/ResearchWhatever15/ResearchWhateverGameComp.cs
p.tychinin 83d3e2f6c5 1.1
2024-04-06 14:27:54 +03:00

25 lines
740 B
C#

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; } }
}
}