mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-01 05:10:50 +01:00
37 lines
1.3 KiB
C#
37 lines
1.3 KiB
C#
using System;
|
|
using System.Linq;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace MLEM.Data.Json {
|
|
/// <summary>
|
|
/// A helper class that stores all of the <see cref="JsonConverter"/> types that are part of MLEM.Data.
|
|
/// </summary>
|
|
public class JsonConverters {
|
|
|
|
/// <summary>
|
|
/// An array of all of the <see cref="JsonConverter"/>s that are part of MLEM.Data
|
|
/// </summary>
|
|
public static readonly JsonConverter[] Converters = {
|
|
new Direction2Converter(),
|
|
#pragma warning disable CS0618
|
|
new DynamicEnumConverter(),
|
|
#pragma warning restore CS0618
|
|
new PointConverter(),
|
|
new RectangleConverter(),
|
|
new RectangleFConverter(),
|
|
new Vector2Converter()
|
|
};
|
|
|
|
/// <summary>
|
|
/// Adds all of the <see cref="JsonConverter"/> objects that are part of MLEM.Data to the given <see cref="JsonSerializer"/>
|
|
/// </summary>
|
|
/// <param name="serializer">The serializer to add the converters to</param>
|
|
/// <returns>The given serializer, for chaining</returns>
|
|
public static JsonSerializer AddAll(JsonSerializer serializer) {
|
|
foreach (var converter in JsonConverters.Converters)
|
|
serializer.Converters.Add(converter);
|
|
return serializer;
|
|
}
|
|
|
|
}
|
|
}
|