mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 14:17:26 +08:00
25 lines
676 B
C#
25 lines
676 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 virtual SkinConfiguration Configuration { get; protected set; }
|
|
|
|
public abstract Drawable GetDrawableComponent(string componentName);
|
|
|
|
public abstract SampleChannel GetSample(string sampleName);
|
|
|
|
protected Skin(SkinInfo skin)
|
|
{
|
|
SkinInfo = skin;
|
|
}
|
|
}
|
|
}
|