Add a few xmldocs

This commit is contained in:
smoogipoo
2017-12-06 00:42:17 +09:00
parent d2dc7c8937
commit e199ee5225
2 changed files with 9 additions and 0 deletions

View File

@ -8,6 +8,9 @@ using OpenTK;
namespace osu.Game.IO.Serialization.Converters
{
/// <summary>
/// A type of <see cref="JsonConverter"/> that serializes only the X and Y coordinates of a <see cref="Vector2"/>.
/// </summary>
public class Vector2Converter : JsonConverter
{
public override bool CanConvert(Type objectType) => objectType == typeof(Vector2);