1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 05:47:20 +08:00

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.
// See the LICENCE file in the repository root for full licence text.
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
@ -28,7 +26,7 @@ namespace osu.Game.Skinning
[Serializable]
public sealed class SerialisedDrawableInfo
{
public Type Type { get; set; }
public Type Type { get; set; } = null!;
public Vector2 Position { get; set; }