mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
15 lines
468 B
C#
15 lines
468 B
C#
using Robust.Shared.Player;
|
|
using Robust.Shared.Toolshed;
|
|
|
|
namespace Robust.Server.Console
|
|
{
|
|
public interface IConGroupControllerImplementation : IPermissionController
|
|
{
|
|
bool CanCommand(ICommonSession session, string cmdName);
|
|
bool CanAdminPlace(ICommonSession session);
|
|
bool CanScript(ICommonSession session);
|
|
bool CanAdminMenu(ICommonSession session);
|
|
bool CanAdminReloadPrototypes(ICommonSession session);
|
|
}
|
|
}
|