mirror of
https://github.com/roflmuffin/CounterStrikeSharp.git
synced 2025-12-07 00:16:36 -08:00
Co-authored-by: KillStr3aK <KillStr3aK@users.noreply.github.com> Co-authored-by: Roflmuffin <shortguy014@gmail.com>
54 lines
1.8 KiB
C#
54 lines
1.8 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 CBaseIssue : NativeObject
|
|
{
|
|
public CBaseIssue (IntPtr pointer) : base(pointer) {}
|
|
|
|
// m_szTypeString
|
|
[SchemaMember("CBaseIssue", "m_szTypeString")]
|
|
public string TypeString
|
|
{
|
|
get { return Schema.GetString(this.Handle, "CBaseIssue", "m_szTypeString"); }
|
|
set { Schema.SetStringBytes(this.Handle, "CBaseIssue", "m_szTypeString", value, 64); }
|
|
}
|
|
|
|
// m_szDetailsString
|
|
[SchemaMember("CBaseIssue", "m_szDetailsString")]
|
|
public string DetailsString
|
|
{
|
|
get { return Schema.GetString(this.Handle, "CBaseIssue", "m_szDetailsString"); }
|
|
set { Schema.SetStringBytes(this.Handle, "CBaseIssue", "m_szDetailsString", value, 4096); }
|
|
}
|
|
|
|
// m_iNumYesVotes
|
|
[SchemaMember("CBaseIssue", "m_iNumYesVotes")]
|
|
public ref Int32 NumYesVotes => ref Schema.GetRef<Int32>(this.Handle, "CBaseIssue", "m_iNumYesVotes");
|
|
|
|
// m_iNumNoVotes
|
|
[SchemaMember("CBaseIssue", "m_iNumNoVotes")]
|
|
public ref Int32 NumNoVotes => ref Schema.GetRef<Int32>(this.Handle, "CBaseIssue", "m_iNumNoVotes");
|
|
|
|
// m_iNumPotentialVotes
|
|
[SchemaMember("CBaseIssue", "m_iNumPotentialVotes")]
|
|
public ref Int32 NumPotentialVotes => ref Schema.GetRef<Int32>(this.Handle, "CBaseIssue", "m_iNumPotentialVotes");
|
|
|
|
// m_pVoteController
|
|
[SchemaMember("CBaseIssue", "m_pVoteController")]
|
|
public CVoteController? VoteController => Schema.GetPointer<CVoteController>(this.Handle, "CBaseIssue", "m_pVoteController");
|
|
|
|
}
|