mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
23 lines
594 B
C#
23 lines
594 B
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
using osu.Framework.Graphics;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public abstract class Skin
|
|
{
|
|
public readonly SkinInfo SkinInfo;
|
|
|
|
public abstract Drawable GetDrawableComponent(string componentName);
|
|
|
|
public abstract SampleChannel GetSample(string sampleName);
|
|
|
|
protected Skin(SkinInfo skin)
|
|
{
|
|
SkinInfo = skin;
|
|
}
|
|
}
|
|
}
|