1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-13 17:13:06 +08:00

Remove local storage for now

This commit is contained in:
Dean Herbert 2017-12-31 12:22:17 +09:00
parent f2d302f8dc
commit 94b761e63e

View File

@ -86,14 +86,12 @@ namespace osu.Game
private DatabaseContextFactory contextFactory;
private LargeTextureStore largeTextureStore;
[BackgroundDependencyLoader]
private void load()
{
dependencies.Cache(contextFactory = new DatabaseContextFactory(Host));
dependencies.Cache(largeTextureStore = new LargeTextureStore(new RawTextureLoaderStore(new NamespacedResourceStore<byte[]>(Resources, @"Textures"))));
dependencies.Cache(new LargeTextureStore(new RawTextureLoaderStore(new NamespacedResourceStore<byte[]>(Resources, @"Textures"))));
dependencies.Cache(this);
dependencies.Cache(LocalConfig);