10 lines
No EOL
231 B
C#
10 lines
No EOL
231 B
C#
using WingsEmu.Game._packetHandling;
|
|
|
|
namespace WingsEmu.Game.Families.Event;
|
|
|
|
public class FamilyShoutEvent : PlayerEvent
|
|
{
|
|
public FamilyShoutEvent(string message) => Message = message;
|
|
|
|
public string Message { get; }
|
|
} |