16 lines
253 B
C#
16 lines
253 B
C#
using System;
|
|
|
|
namespace NitroxModel.Packets
|
|
{
|
|
[Serializable]
|
|
public class PlayerKicked : Packet
|
|
{
|
|
public string Reason { get; }
|
|
|
|
public PlayerKicked(string reason)
|
|
{
|
|
Reason = reason;
|
|
}
|
|
}
|
|
}
|