2023-06-07 01:07:02 +00:00
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
#include "!GlobalTypes.hpp"
|
|
|
|
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
// Binary: host.dll
|
|
|
|
// Classes count: 2
|
|
|
|
// Enums count: 0
|
|
|
|
// Created using source2gen - github.com/neverlosecc/source2gen
|
|
|
|
// /////////////////////////////////////////////////////////////
|
|
|
|
|
2023-11-09 15:15:56 +00:00
|
|
|
// Registered binary: host.dll (project 'host')
|
|
|
|
// Alignment: 8
|
2023-06-07 01:07:02 +00:00
|
|
|
// Size: 0x10
|
2023-11-09 15:15:56 +00:00
|
|
|
// Has VTable
|
|
|
|
// Is Abstract
|
2023-06-07 01:07:02 +00:00
|
|
|
class CAnimScriptBase
|
|
|
|
{
|
2023-09-04 21:12:06 +00:00
|
|
|
private:
|
|
|
|
[[maybe_unused]] uint8_t __pad0000[0x8]; // 0x0
|
2023-06-07 01:07:02 +00:00
|
|
|
public:
|
|
|
|
bool m_bIsValid; // 0x8
|
|
|
|
};
|
|
|
|
|
2023-11-09 15:15:56 +00:00
|
|
|
// Registered binary: host.dll (project 'host')
|
|
|
|
// Alignment: 8
|
2023-09-04 21:12:06 +00:00
|
|
|
// Size: 0x20
|
2023-11-09 15:15:56 +00:00
|
|
|
// Has VTable
|
2023-06-07 01:07:02 +00:00
|
|
|
class EmptyTestScript : public CAnimScriptBase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CAnimScriptParam< float32 > m_hTest; // 0x10
|
|
|
|
};
|
|
|
|
|