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; + } } }