1
0
mirror of https://github.com/ppy/osu.git synced 2026-06-07 02:53:38 +08:00
Files
osu-lazer/osu.Game/Skinning/SkinStore.cs
T
2018-02-21 17:14:53 +09:00

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)
{
}
}
}