diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-01-20 21:45:21 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2018-01-20 21:45:21 -0500 |
commit | 454a2de2949deae90de4a936fb8fa7341d4a2990 (patch) | |
tree | c8e1230162425a5bf613345a70dc79856630d93d /src/SMAPI/Framework/Serialisation/JsonHelper.cs | |
parent | 894fd25a18cd5ddf31a905860aca95c438894efd (diff) | |
download | SMAPI-454a2de2949deae90de4a936fb8fa7341d4a2990.tar.gz SMAPI-454a2de2949deae90de4a936fb8fa7341d4a2990.tar.bz2 SMAPI-454a2de2949deae90de4a936fb8fa7341d4a2990.zip |
split SFieldConverter into separate converters
Diffstat (limited to 'src/SMAPI/Framework/Serialisation/JsonHelper.cs')
-rw-r--r-- | src/SMAPI/Framework/Serialisation/JsonHelper.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/Serialisation/JsonHelper.cs b/src/SMAPI/Framework/Serialisation/JsonHelper.cs index 1253f242..2e2a666e 100644 --- a/src/SMAPI/Framework/Serialisation/JsonHelper.cs +++ b/src/SMAPI/Framework/Serialisation/JsonHelper.cs @@ -3,7 +3,8 @@ using System.Collections.Generic; using System.IO; using Microsoft.Xna.Framework.Input; using Newtonsoft.Json; -using StardewModdingAPI.Framework.Serialisation.Converters; +using StardewModdingAPI.Framework.Serialisation.CrossplatformConverters; +using StardewModdingAPI.Framework.Serialisation.SmapiConverters; namespace StardewModdingAPI.Framework.Serialisation { |