17 lines
325 B
C#
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();
|
|
}
|
|
}
|
|
}
|