10 lines
No EOL
256 B
C#
10 lines
No EOL
256 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Groups.Events;
|
|
|
|
public class JoinToGroupEvent : PlayerEvent
|
|
{
|
|
public JoinToGroupEvent(PlayerGroup playerGroup) => PlayerGroup = playerGroup;
|
|
|
|
public PlayerGroup PlayerGroup { get; }
|
|
} |