osu/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
524 B
C#
Raw Normal View History

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