FunGame-Core/Interface/Base/Addons/IGameModeServer.cs
milimoe 7bc244ff49
添加HTTP相关(WebSocket) (#74)
* 添加HTTP相关(WebSocket)

* 添加WebDataRequest
2024-05-11 13:14:08 +08:00

15 lines
568 B
C#

using System.Collections;
using Milimoe.FunGame.Core.Entity;
using Milimoe.FunGame.Core.Interface.Base;
using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.Core.Interface.Addons
{
public interface IGameModeServer : IAddon, IAddonController
{
public bool StartServer(string GameMode, Room Room, List<User> Users, IServerModel RoomMasterServerModel, Dictionary<string, IServerModel> OthersServerModel, params object[] args);
public Hashtable GamingMessageHandler(string username, GamingType type, Hashtable data);
}
}