2022-06-19 18:49:17 +00:00
|
|
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
|
using Verse;
|
|
|
|
|
|
|
|
|
|
namespace RJWSexperience.Ideology.Precepts
|
|
|
|
|
{
|
|
|
|
|
public abstract class DefExtension_ModifyMtb : DefModExtension
|
|
|
|
|
{
|
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public float multiplier = 1f;
|
2022-06-23 04:40:33 +00:00
|
|
|
|
[SuppressMessage("Minor Code Smell", "S1104:Fields should not have public accessibility", Justification = "Field value loaded from XML")]
|
|
|
|
|
public bool disable = false;
|
2022-06-19 18:49:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|