mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
19 lines
585 B
C#
19 lines
585 B
C#
using Robust.Server.Interfaces.Player;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Robust.Server.Console
|
|
{
|
|
public interface IConGroupController
|
|
{
|
|
void Initialize();
|
|
|
|
bool CanCommand(IPlayerSession session, string cmdName);
|
|
bool CanViewVar(IPlayerSession session);
|
|
bool CanAdminPlace(IPlayerSession session);
|
|
bool CanScript(IPlayerSession session);
|
|
void SetGroup(IPlayerSession session, ConGroupIndex newGroup);
|
|
ConGroupIndex GetGroupIndex(IPlayerSession session);
|
|
string GetGroupName(ConGroupIndex index);
|
|
}
|
|
}
|