Files
CounterStrikeSharp/managed/CounterStrikeSharp.API/Core/Schema/Classes/CInfoPlayerStart.g.cs
2024-10-05 00:47:33 +10:00

38 lines
1.2 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 CInfoPlayerStart : CPointEntity
{
public CInfoPlayerStart (IntPtr pointer) : base(pointer) {}
// m_bDisabled
[SchemaMember("CInfoPlayerStart", "m_bDisabled")]
public ref bool Disabled => ref Schema.GetRef<bool>(this.Handle, "CInfoPlayerStart", "m_bDisabled");
// m_bIsMaster
[SchemaMember("CInfoPlayerStart", "m_bIsMaster")]
public ref bool IsMaster => ref Schema.GetRef<bool>(this.Handle, "CInfoPlayerStart", "m_bIsMaster");
// m_pPawnSubclass
[SchemaMember("CInfoPlayerStart", "m_pPawnSubclass")]
public string PawnSubclass
{
get { return Schema.GetUtf8String(this.Handle, "CInfoPlayerStart", "m_pPawnSubclass"); }
set { Schema.SetString(this.Handle, "CInfoPlayerStart", "m_pPawnSubclass", value); }
}
}