2023-06-05 16:44:09 +12:00
|
|
|
using Robust.Client.Console;
|
|
|
|
|
|
|
|
|
|
namespace Content.Client.Replay;
|
|
|
|
|
|
|
|
|
|
public sealed class ReplayConGroup : IClientConGroupImplementation
|
|
|
|
|
{
|
2024-02-13 22:48:39 +01:00
|
|
|
public event Action? ConGroupUpdated { add { } remove { } }
|
2023-06-05 16:44:09 +12:00
|
|
|
public bool CanAdminMenu() => true;
|
|
|
|
|
public bool CanAdminPlace() => true;
|
|
|
|
|
public bool CanCommand(string cmdName) => true;
|
|
|
|
|
public bool CanScript() => true;
|
|
|
|
|
public bool CanViewVar() => true;
|
|
|
|
|
}
|