mirror of
https://github.com/ppy/osu.git
synced 2026-06-07 02:53:38 +08:00
17 lines
488 B
C#
17 lines
488 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.Platform;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Skinning
|
|
{
|
|
public class SkinStore : MutableDatabaseBackedStore<SkinInfo>
|
|
{
|
|
public SkinStore(DatabaseContextFactory contextFactory, Storage storage = null)
|
|
: base(contextFactory, storage)
|
|
{
|
|
}
|
|
}
|
|
}
|