From 61b7bbefc0b740b3bbb5ac742ee05c4dffe6121d Mon Sep 17 00:00:00 2001 From: Branden J Brown Date: Sun, 30 Jul 2023 10:16:49 -0500 Subject: [PATCH] use fields instead of properties --- Assets/Scripts/EffectSO.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/Scripts/EffectSO.cs b/Assets/Scripts/EffectSO.cs index cd978c5..f50bce1 100644 --- a/Assets/Scripts/EffectSO.cs +++ b/Assets/Scripts/EffectSO.cs @@ -6,16 +6,16 @@ public class EffectSO : ScriptableObject /// /// Additive change applied before multiplicative scaling. /// - public long Base { get; private set; } + public long Base; /// /// Multiplicative scaling in units of hundredth of a percent. /// E.g., 625 permyriad is 6.25%. /// - public long Permyriad { get; private set; } + public long Permyriad; /// /// Additive change applied after multiplicative scaling. /// - public long Flat { get; private set; } + public long Flat; /// /// Create a new attribute effect instance.