diff options
Diffstat (limited to 'src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley')
-rw-r--r-- | src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs | 7 | ||||
-rw-r--r-- | src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs b/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs index 54e91682..13fab069 100644 --- a/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs +++ b/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs @@ -1,7 +1,6 @@ // ReSharper disable CheckNamespace, InconsistentNaming -- matches Stardew Valley's code #pragma warning disable 649 // (never assigned) -- only used to test type conversions using System.Collections.Generic; -using Netcode; namespace StardewValley { @@ -10,11 +9,5 @@ namespace StardewValley { /// <summary>A sample field which should be replaced with a different property.</summary> public readonly IDictionary<string, int[]> friendships; - - /// <summary>A sample net list.</summary> - public readonly NetList<int> eventsSeen; - - /// <summary>A sample net object list.</summary> - public readonly NetObjectList<int> netObjectList; } } diff --git a/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs b/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs index 386767d7..1b6317c1 100644 --- a/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs +++ b/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Item.cs @@ -20,5 +20,14 @@ namespace StardewValley /// <summary>A generic net ref property with no equivalent non-net property.</summary> public NetRef<object> netRefProperty { get; } = new NetRef<object>(); + + /// <summary>A sample net list.</summary> + public readonly NetList<int> netList = new NetList<int>(); + + /// <summary>A sample net object list.</summary> + public readonly NetObjectList<int> netObjectList = new NetObjectList<int>(); + + /// <summary>A sample net collection.</summary> + public readonly NetCollection<int> netCollection = new NetCollection<int>(); } } |