-
Notifications
You must be signed in to change notification settings - Fork 3
/
host.hpp
34 lines (30 loc) · 799 Bytes
/
host.hpp
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
#pragma once
#include <cstdint>
#include "!GlobalTypes.hpp"
// /////////////////////////////////////////////////////////////
// Binary: host.dll
// Classes count: 0 (Allocated) | 2 (Unallocated)
// Enums count: 0 (Allocated) | 0 (Unallocated)
// Created using source2gen - github.com/neverlosecc/source2gen
// /////////////////////////////////////////////////////////////
// Registered binary: host.dll (project 'host')
// Alignment: 8
// Size: 0x10
// Has VTable
// Is Abstract
class CAnimScriptBase
{
private:
[[maybe_unused]] uint8_t __pad0000[0x8]; // 0x0
public:
bool m_bIsValid; // 0x8
};
// Registered binary: host.dll (project 'host')
// Alignment: 8
// Size: 0x20
// Has VTable
class EmptyTestScript : public CAnimScriptBase
{
public:
CAnimScriptParam<float32> m_hTest; // 0x10
};