Add missing licence header

This commit is contained in:
Dean Herbert 2018-02-23 12:35:25 +09:00
parent 6ceabfe19e
commit 92d20eea8c
1 changed files with 12 additions and 3 deletions

View File

@ -1,4 +1,7 @@
using osu.Framework.Audio.Sample;
// 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
@ -10,8 +13,14 @@ public DefaultSkin()
{
}
public override Drawable GetDrawableComponent(string componentName) => null;
public override Drawable GetDrawableComponent(string componentName)
{
return null;
}
public override SampleChannel GetSample(string sampleName) => null;
public override SampleChannel GetSample(string sampleName)
{
return null;
}
}
}