Add timestamp to generated files

This commit is contained in:
a2x
2023-10-03 02:00:52 +10:00
parent 338bcde14e
commit 5d4778ebeb
60 changed files with 16048 additions and 15839 deletions

View File

@@ -2,8 +2,11 @@
#include <cstddef>
// Created using https://github.com/a2x/cs2-dumper
// 2023-10-02 15:54:54.359101700 UTC
namespace CSSDSEndFrameViewInfo {
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64_t
constexpr std::ptrdiff_t m_ViewName = 0x8; // CUtlString
}
@@ -14,8 +17,8 @@ namespace CSSDSMsg_EndFrame {
namespace CSSDSMsg_LayerBase {
constexpr std::ptrdiff_t m_viewId = 0x0; // SceneViewId_t
constexpr std::ptrdiff_t m_ViewName = 0x10; // CUtlString
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64
constexpr std::ptrdiff_t m_nLayerIndex = 0x18; // int32_t
constexpr std::ptrdiff_t m_nLayerId = 0x20; // uint64_t
constexpr std::ptrdiff_t m_LayerName = 0x28; // CUtlString
constexpr std::ptrdiff_t m_displayText = 0x30; // CUtlString
}
@@ -27,15 +30,15 @@ namespace CSSDSMsg_ViewRender {
namespace CSSDSMsg_ViewTarget {
constexpr std::ptrdiff_t m_Name = 0x0; // CUtlString
constexpr std::ptrdiff_t m_TextureId = 0x8; // uint64
constexpr std::ptrdiff_t m_nWidth = 0x10; // int32
constexpr std::ptrdiff_t m_nHeight = 0x14; // int32
constexpr std::ptrdiff_t m_nRequestedWidth = 0x18; // int32
constexpr std::ptrdiff_t m_nRequestedHeight = 0x1C; // int32
constexpr std::ptrdiff_t m_nNumMipLevels = 0x20; // int32
constexpr std::ptrdiff_t m_nDepth = 0x24; // int32
constexpr std::ptrdiff_t m_nMultisampleNumSamples = 0x28; // int32
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32
constexpr std::ptrdiff_t m_TextureId = 0x8; // uint64_t
constexpr std::ptrdiff_t m_nWidth = 0x10; // int32_t
constexpr std::ptrdiff_t m_nHeight = 0x14; // int32_t
constexpr std::ptrdiff_t m_nRequestedWidth = 0x18; // int32_t
constexpr std::ptrdiff_t m_nRequestedHeight = 0x1C; // int32_t
constexpr std::ptrdiff_t m_nNumMipLevels = 0x20; // int32_t
constexpr std::ptrdiff_t m_nDepth = 0x24; // int32_t
constexpr std::ptrdiff_t m_nMultisampleNumSamples = 0x28; // int32_t
constexpr std::ptrdiff_t m_nFormat = 0x2C; // int32_t
}
namespace CSSDSMsg_ViewTargetList {
@@ -45,6 +48,6 @@ namespace CSSDSMsg_ViewTargetList {
}
namespace SceneViewId_t {
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64
constexpr std::ptrdiff_t m_nViewId = 0x0; // uint64_t
constexpr std::ptrdiff_t m_nFrameCount = 0x8; // uint64_t
}