Files
reallife-gamemode/ReallifeGamemode.Server.Core/Commands/Admin/AdminCommand.cs
2020-03-12 19:19:42 +01:00

17 lines
325 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using ReallifeGamemode.Server.Core.API;
namespace ReallifeGamemode.Server.Core.Commands.Admin
{
abstract class AdminCommand : Command
{
public override bool CanExecute(IPlayer player)
{
throw new NotImplementedException();
}
}
}