osu/osu.Game.Rulesets.Catch/Skinning/ICatcherSprite.cs

13 lines
325 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
{
2021-06-08 13:10:13 +00:00
public interface ICatcherSprite
{
Texture CurrentTexture { get; }
}
}