Remove local implementation of Vector2Converter

This has been moved to framework in
https://github.com/ppy/osu-framework/pull/4285.
This commit is contained in:
Dean Herbert
2021-03-17 14:13:53 +09:00
parent c624aa9397
commit b1c4ac9f42
2 changed files with 0 additions and 36 deletions

View File

@ -2,7 +2,6 @@
// See the LICENCE file in the repository root for full licence text.
using Newtonsoft.Json;
using osu.Game.IO.Serialization.Converters;
namespace osu.Game.IO.Serialization
{
@ -28,7 +27,6 @@ namespace osu.Game.IO.Serialization
Formatting = Formatting.Indented,
ObjectCreationHandling = ObjectCreationHandling.Replace,
DefaultValueHandling = DefaultValueHandling.IgnoreAndPopulate,
Converters = new JsonConverter[] { new Vector2Converter() },
ContractResolver = new KeyContractResolver()
};
}