mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-12 16:05:36 +08:00
16 lines
334 B
C++
16 lines
334 B
C++
/*
|
|
* Created using https://github.com/a2x/cs2-dumper
|
|
* Fri, 23 Feb 2024 13:31:37 +0000
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cstddef>
|
|
|
|
namespace CAnimScriptBase {
|
|
constexpr std::ptrdiff_t m_bIsValid = 0x8; // bool
|
|
}
|
|
|
|
namespace EmptyTestScript { // CAnimScriptBase
|
|
constexpr std::ptrdiff_t m_hTest = 0x10; // CAnimScriptParam<float>
|
|
} |