mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 12:09:34 +08:00
13 lines
255 B
C#
13 lines
255 B
C#
namespace Milimoe.FunGame.Core.Library.Common.Event
|
|
{
|
|
public class RoomEventArgs
|
|
{
|
|
public string RoomID { get; set; } = "";
|
|
|
|
public RoomEventArgs(string RoomID = "")
|
|
{
|
|
this.RoomID = RoomID;
|
|
}
|
|
}
|
|
}
|