mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-06 16:06:37 -08:00
10 lines
248 B
C#
10 lines
248 B
C#
using CounterStrikeSharp.API.Modules.Commands;
|
|
|
|
namespace CounterStrikeSharp.API.Core.Commands;
|
|
|
|
public interface ICommandManager
|
|
{
|
|
void RegisterCommand(CommandDefinition definition);
|
|
|
|
void RemoveCommand(CommandDefinition definition);
|
|
} |