mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-08 00:46:34 -08:00
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
// <auto-generated />
|
|
#nullable enable
|
|
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.Diagnostics;
|
|
using System.Drawing;
|
|
using CounterStrikeSharp;
|
|
using CounterStrikeSharp.API.Modules.Events;
|
|
using CounterStrikeSharp.API.Modules.Entities;
|
|
using CounterStrikeSharp.API.Modules.Memory;
|
|
using CounterStrikeSharp.API.Modules.Utils;
|
|
using CounterStrikeSharp.API.Core.Attributes;
|
|
|
|
namespace CounterStrikeSharp.API.Core;
|
|
|
|
public partial class CBubbling : CBaseModelEntity
|
|
{
|
|
public CBubbling (IntPtr pointer) : base(pointer) {}
|
|
|
|
// m_density
|
|
[SchemaMember("CBubbling", "m_density")]
|
|
public ref Int32 Density => ref Schema.GetRef<Int32>(this.Handle, "CBubbling", "m_density");
|
|
|
|
// m_frequency
|
|
[SchemaMember("CBubbling", "m_frequency")]
|
|
public ref Int32 Frequency => ref Schema.GetRef<Int32>(this.Handle, "CBubbling", "m_frequency");
|
|
|
|
// m_state
|
|
[SchemaMember("CBubbling", "m_state")]
|
|
public ref Int32 State => ref Schema.GetRef<Int32>(this.Handle, "CBubbling", "m_state");
|
|
|
|
}
|