1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-17 23:32:55 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Skinning/Legacy/LegacySmoke.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
584 B
C#
Raw Normal View History

2022-09-19 03:08:34 +08:00
// 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.Game.Skinning;
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
{
public class LegacySmoke : Smoke
{
private ISkin skin;
public LegacySmoke(ISkin skin)
{
this.skin = skin;
PathRadius = 8;
}
protected override void LoadComplete()
{
base.LoadComplete();
Texture = skin.GetTexture("cursor-smoke");
}
}
}