mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 20:19:34 +08:00

* 添加GameMode, GameMap; 优化了Plugin和RoomType等 * 添加GameModeLoader,重构GameMode和GameMap * 添加Gaming事件接口 * 添加IGameModeSupported接口 * 为GameMode添加Implement接口 * 为BeforeConnect添加参数
12 lines
373 B
C#
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;
|
|
}
|
|
}
|