summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Object.cs
blob: 3dd66a6d3e0cde208cfd469c9245f87751acc3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// ReSharper disable CheckNamespace, InconsistentNaming -- matches Stardew Valley's code
using Netcode;

namespace StardewValley
{
    /// <summary>A simplified version of Stardew Valley's <c>StardewValley.Object</c> class for unit testing.</summary>
    public class Object : Item
    {
        /// <summary>A net int field with an equivalent non-net property.</summary>
        public NetInt type = new NetInt { Value = 42 };
    }
}