1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-19 20:42:56 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Skinning/ICatcherPiece.cs

13 lines
324 B
C#
Raw Normal View History

// 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 osu.Framework.Graphics.Textures;
namespace osu.Game.Rulesets.Catch.Skinning
{
public interface ICatcherPiece
{
Texture CurrentTexture { get; }
}
}