2022-04-18 14:51:59 +00:00
|
|
|
|
using RimWorld;
|
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
2022-04-23 20:12:02 +00:00
|
|
|
|
using Verse;
|
2022-04-18 14:51:59 +00:00
|
|
|
|
|
|
|
|
|
namespace RJWSexperience
|
|
|
|
|
{
|
2022-04-23 20:12:02 +00:00
|
|
|
|
public class ThoughtDefExtension_IncreaseRecord : DefModExtension
|
2022-04-18 14:51:59 +00:00
|
|
|
|
{
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public RecordDef recordDef;
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public float increment;
|
|
|
|
|
}
|
|
|
|
|
}
|