Files
Nitrox/NitroxModel/Packets/ServerCommand.cs
2025-07-06 00:23:46 +02:00

21 lines
356 B
C#

using System;
namespace NitroxModel.Packets
{
[Serializable]
public class ServerCommand : Packet
{
public string Cmd { get; }
public ServerCommand(string cmd)
{
Cmd = cmd;
}
public ServerCommand(string[] cmdArgs)
{
Cmd = string.Join(" ", cmdArgs);
}
}
}