FunGame-Core/Library/Common/Event/GamingEventArgs.cs
milimoe 543887881a
添加GameMode, GameMap, GameModeLoader (#62)
* 添加GameMode, GameMap; 优化了Plugin和RoomType等

* 添加GameModeLoader,重构GameMode和GameMap

* 添加Gaming事件接口

* 添加IGameModeSupported接口

* 为GameMode添加Implement接口

* 为BeforeConnect添加参数
2023-11-27 00:30:00 +08:00

12 lines
373 B
C#

using Milimoe.FunGame.Core.Entity;
namespace Milimoe.FunGame.Core.Library.Common.Event
{
public class GamingEventArgs(Room room, List<User> users, List<Character> characters) : GeneralEventArgs
{
public Room Room { get; } = room;
public List<User> Users { get; } = users;
public List<Character> Characters { get; } = characters;
}
}