mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-03-06 14:40:26 +00:00
10 lines
202 B
C#
10 lines
202 B
C#
using Milimoe.FunGame.Core.Api.Utility;
|
|
|
|
namespace Milimoe.FunGame.Core.Interface.Addons
|
|
{
|
|
public interface IGameMap : IAddon
|
|
{
|
|
public GameModuleLoader? ModuleLoader { get; }
|
|
}
|
|
}
|