mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-09 01:16:36 -08:00
38 lines
1.3 KiB
C#
38 lines
1.3 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 CRagdollManager : CBaseEntity
|
|
{
|
|
public CRagdollManager (IntPtr pointer) : base(pointer) {}
|
|
|
|
// m_iCurrentMaxRagdollCount
|
|
[SchemaMember("CRagdollManager", "m_iCurrentMaxRagdollCount")]
|
|
public ref sbyte CurrentMaxRagdollCount => ref Schema.GetRef<sbyte>(this.Handle, "CRagdollManager", "m_iCurrentMaxRagdollCount");
|
|
|
|
// m_iMaxRagdollCount
|
|
[SchemaMember("CRagdollManager", "m_iMaxRagdollCount")]
|
|
public ref Int32 MaxRagdollCount => ref Schema.GetRef<Int32>(this.Handle, "CRagdollManager", "m_iMaxRagdollCount");
|
|
|
|
// m_bSaveImportant
|
|
[SchemaMember("CRagdollManager", "m_bSaveImportant")]
|
|
public ref bool SaveImportant => ref Schema.GetRef<bool>(this.Handle, "CRagdollManager", "m_bSaveImportant");
|
|
|
|
// m_bCanTakeDamage
|
|
[SchemaMember("CRagdollManager", "m_bCanTakeDamage")]
|
|
public ref bool CanTakeDamage => ref Schema.GetRef<bool>(this.Handle, "CRagdollManager", "m_bCanTakeDamage");
|
|
|
|
}
|