Apply NRT to SerialisedDrawableInfo

This commit is contained in:
Dean Herbert 2023-02-16 20:01:59 +09:00
parent 81dcc105a9
commit cb7df7282b

View File

@ -1,8 +1,6 @@
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence. // Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text. // See the LICENCE file in the repository root for full licence text.
#nullable disable
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
@ -28,7 +26,7 @@ namespace osu.Game.Skinning
[Serializable] [Serializable]
public sealed class SerialisedDrawableInfo public sealed class SerialisedDrawableInfo
{ {
public Type Type { get; set; } public Type Type { get; set; } = null!;
public Vector2 Position { get; set; } public Vector2 Position { get; set; }