mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-05 15:40:24 -08:00
13 lines
307 B
C#
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);
|
|
} |