Files
CounterStrikeSharp/managed/CounterStrikeSharp.API/Core/HookResult.cs
2023-10-23 19:56:42 +10:00

9 lines
143 B
C#

namespace CounterStrikeSharp.API.Core;
public enum HookResult
{
Continue = 0,
Changed = 1,
Handled = 3,
Stop = 4,
}