mirror of
https://github.com/rafi1212122/PemukulPaku
synced 2025-12-12 19:14:34 +01:00
20 lines
426 B
C#
20 lines
426 B
C#
using Common;
|
|
|
|
namespace PemukulPaku.GameServer.Commands
|
|
{
|
|
[CommandHandler("test")]
|
|
public class TestCommand : Command
|
|
{
|
|
public override void Run(Session? session, string[] args)
|
|
{
|
|
if (args.Length < 3)
|
|
{
|
|
c.Error("Not enough arguments");
|
|
return;
|
|
}
|
|
|
|
c.Log($"Testing {args[0]} {args[1]} {args[2]}");
|
|
}
|
|
}
|
|
}
|