1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-26 18:52:55 +08:00

Fix another realm null inspection

This commit is contained in:
Dean Herbert 2024-01-04 17:04:36 +09:00
parent b1813b17a2
commit df99a37254
No known key found for this signature in database

View File

@ -132,8 +132,8 @@ namespace osu.Game.Tests.Beatmaps
public AudioManager AudioManager => Audio;
public IResourceStore<byte[]> Files => userSkinResourceStore;
public new IResourceStore<byte[]> Resources => base.Resources;
public IResourceStore<TextureUpload> CreateTextureLoaderStore(IResourceStore<byte[]> underlyingStore) => null;
RealmAccess IStorageResourceProvider.RealmAccess => null;
public IResourceStore<TextureUpload> CreateTextureLoaderStore(IResourceStore<byte[]> underlyingStore) => throw new NotImplementedException();
RealmAccess IStorageResourceProvider.RealmAccess => throw new NotImplementedException();
#endregion