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

13 lines
307 B
C#

using System;
using System.Runtime.CompilerServices;
namespace CounterStrikeSharp.API.Core;
public class GameEventInfo : NativeObject
{
public GameEventInfo(IntPtr pointer) : base(pointer)
{
}
public unsafe ref bool DontBroadcast => ref Unsafe.AsRef<bool>((void*)Handle);
}