-
-
Notifications
You must be signed in to change notification settings - Fork 129
/
CPointVelocitySensor.g.cs
41 lines (32 loc) · 1.53 KB
/
CPointVelocitySensor.g.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// <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 CPointVelocitySensor : CPointEntity
{
public CPointVelocitySensor (IntPtr pointer) : base(pointer) {}
// m_hTargetEntity
[SchemaMember("CPointVelocitySensor", "m_hTargetEntity")]
public CHandle<CBaseEntity> TargetEntity => Schema.GetDeclaredClass<CHandle<CBaseEntity>>(this.Handle, "CPointVelocitySensor", "m_hTargetEntity");
// m_vecAxis
[SchemaMember("CPointVelocitySensor", "m_vecAxis")]
public Vector Axis => Schema.GetDeclaredClass<Vector>(this.Handle, "CPointVelocitySensor", "m_vecAxis");
// m_bEnabled
[SchemaMember("CPointVelocitySensor", "m_bEnabled")]
public ref bool Enabled => ref Schema.GetRef<bool>(this.Handle, "CPointVelocitySensor", "m_bEnabled");
// m_fPrevVelocity
[SchemaMember("CPointVelocitySensor", "m_fPrevVelocity")]
public ref float PrevVelocity => ref Schema.GetRef<float>(this.Handle, "CPointVelocitySensor", "m_fPrevVelocity");
// m_flAvgInterval
[SchemaMember("CPointVelocitySensor", "m_flAvgInterval")]
public ref float AvgInterval => ref Schema.GetRef<float>(this.Handle, "CPointVelocitySensor", "m_flAvgInterval");
}