mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-05 15:40:24 -08:00
9 lines
143 B
C#
9 lines
143 B
C#
namespace CounterStrikeSharp.API.Core;
|
|
|
|
public enum HookResult
|
|
{
|
|
Continue = 0,
|
|
Changed = 1,
|
|
Handled = 3,
|
|
Stop = 4,
|
|
} |