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(); } } }