mirror of
https://github.com/osukey/osukey.git
synced 2025-08-03 22:56:36 +09:00
27 lines
647 B
C#
27 lines
647 B
C#
// 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.
|
|
|
|
using System;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.IO.Serialization;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public interface ISkinnableInfo : IJsonSerializable
|
|
{
|
|
public Type Type { get; set; }
|
|
|
|
public SkinnableTarget? Target { get; set; }
|
|
|
|
public Vector2 Position { get; set; }
|
|
|
|
public float Rotation { get; set; }
|
|
|
|
public Vector2 Scale { get; set; }
|
|
|
|
public Anchor Anchor { get; set; }
|
|
}
|
|
}
|