mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
16 lines
309 B
C#
16 lines
309 B
C#
using System;
|
|
|
|
namespace Robust.Client.Console
|
|
{
|
|
public interface IClientConGroupImplementation
|
|
{
|
|
bool CanCommand(string cmdName);
|
|
bool CanViewVar();
|
|
bool CanAdminPlace();
|
|
bool CanScript();
|
|
bool CanAdminMenu();
|
|
|
|
event Action ConGroupUpdated;
|
|
}
|
|
}
|