From 578162fe24f8eff40ef3da8613455c48eef04120 Mon Sep 17 00:00:00 2001 From: milimoe Date: Tue, 2 Sep 2025 01:00:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=9C=B0=E5=9B=BE=E5=8A=A0=E8=BD=BD=E5=90=8E?= =?UTF-8?q?=E6=89=8D=E8=BF=94=E5=9B=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- OshimaMaps/AnonymousMap.cs | 10 +++++++++- OshimaMaps/FastAutoMap.cs | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/OshimaMaps/AnonymousMap.cs b/OshimaMaps/AnonymousMap.cs index ebda518..78df925 100644 --- a/OshimaMaps/AnonymousMap.cs +++ b/OshimaMaps/AnonymousMap.cs @@ -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; namespace Oshima.FunGame.OshimaMaps @@ -20,5 +21,12 @@ namespace Oshima.FunGame.OshimaMaps public override int Height => 3; public override float Size => 6; + + public override GameMap InitGamingQueue(IGamingQueue queue) + { + GameMap map = new AnonymousMap(); + map.Load(); + return map; + } } } diff --git a/OshimaMaps/FastAutoMap.cs b/OshimaMaps/FastAutoMap.cs index d4b43eb..e8d558d 100644 --- a/OshimaMaps/FastAutoMap.cs +++ b/OshimaMaps/FastAutoMap.cs @@ -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; namespace Oshima.FunGame.OshimaMaps @@ -20,5 +21,12 @@ namespace Oshima.FunGame.OshimaMaps public override int Height => 3; public override float Size => 6; + + public override GameMap InitGamingQueue(IGamingQueue queue) + { + GameMap map = new FastAutoMap(); + map.Load(); + return map; + } } }