地图加载后才返回

This commit is contained in:
milimoe 2025-09-02 01:00:19 +08:00
parent 58dd0980dd
commit 578162fe24
Signed by: milimoe
GPG Key ID: 9554D37E4B8991D0
2 changed files with 18 additions and 2 deletions

View File

@ -1,4 +1,5 @@
using Milimoe.FunGame.Core.Library.Common.Addon; using Milimoe.FunGame.Core.Interface.Base;
using Milimoe.FunGame.Core.Library.Common.Addon;
using Oshima.Core.Constant; using Oshima.Core.Constant;
namespace Oshima.FunGame.OshimaMaps namespace Oshima.FunGame.OshimaMaps
@ -20,5 +21,12 @@ namespace Oshima.FunGame.OshimaMaps
public override int Height => 3; public override int Height => 3;
public override float Size => 6; public override float Size => 6;
public override GameMap InitGamingQueue(IGamingQueue queue)
{
GameMap map = new AnonymousMap();
map.Load();
return map;
}
} }
} }

View File

@ -1,4 +1,5 @@
using Milimoe.FunGame.Core.Library.Common.Addon; using Milimoe.FunGame.Core.Interface.Base;
using Milimoe.FunGame.Core.Library.Common.Addon;
using Oshima.Core.Constant; using Oshima.Core.Constant;
namespace Oshima.FunGame.OshimaMaps namespace Oshima.FunGame.OshimaMaps
@ -20,5 +21,12 @@ namespace Oshima.FunGame.OshimaMaps
public override int Height => 3; public override int Height => 3;
public override float Size => 6; public override float Size => 6;
public override GameMap InitGamingQueue(IGamingQueue queue)
{
GameMap map = new FastAutoMap();
map.Load();
return map;
}
} }
} }