1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 01:27:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Skinning/Legacy/LegacySmokeSegment.cs

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

20 lines
516 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.Framework.Allocation;
2022-09-19 03:08:34 +08:00
using osu.Game.Skinning;
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
{
public class LegacySmokeSegment : SmokeSegment
2022-09-19 03:08:34 +08:00
{
[BackgroundDependencyLoader]
private void load(ISkinSource skin)
2022-09-19 03:08:34 +08:00
{
base.LoadComplete();
Texture = skin.GetTexture("cursor-smoke");
}
}
}