summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig.Analyzer.Tests/Mock/StardewValley/Farmer.cs
blob: bdbf9b45495ee581d9ff8b90a343f1138c7bb7f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#nullable disable

// 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;

namespace StardewValley
{
    /// <summary>A simplified version of Stardew Valley's <c>StardewValley.Farmer</c> class for unit testing.</summary>
    internal class Farmer
    {
        /// <summary>A sample field which should be replaced with a different property.</summary>
        public readonly IDictionary<string, int[]> friendships;
    }
}