mirror of
https://github.com/osukey/osukey.git
synced 2025-05-06 22:27:25 +09:00
Restore potentially breaking change.
This commit is contained in:
parent
e60cead483
commit
654859a2a1
@ -25,12 +25,14 @@ namespace osu.Game.Database
|
|||||||
public event Action<BeatmapSetInfo> BeatmapSetAdded;
|
public event Action<BeatmapSetInfo> BeatmapSetAdded;
|
||||||
public event Action<BeatmapSetInfo> BeatmapSetRemoved;
|
public event Action<BeatmapSetInfo> BeatmapSetRemoved;
|
||||||
|
|
||||||
|
private BeatmapImporter ipc;
|
||||||
|
|
||||||
public BeatmapDatabase(Storage storage, GameHost importHost = null)
|
public BeatmapDatabase(Storage storage, GameHost importHost = null)
|
||||||
{
|
{
|
||||||
this.storage = storage;
|
this.storage = storage;
|
||||||
|
|
||||||
if (importHost != null)
|
if (importHost != null)
|
||||||
new BeatmapImporter(importHost, this);
|
ipc = new BeatmapImporter(importHost, this);
|
||||||
|
|
||||||
if (connection == null)
|
if (connection == null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user