mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-18 02:09:58 +08:00
Fix issue reading enums
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
// Generated using https://github.com/a2x/cs2-dumper
|
||||
// 2024-04-16 02:29:53.956513739 UTC
|
||||
// 2024-04-16 02:45:41.243985329 UTC
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -9,8 +9,27 @@ namespace cs2_dumper {
|
||||
namespace schemas {
|
||||
// Module: libresourcesystem.so
|
||||
// Classes count: 59
|
||||
// Enums count: 0
|
||||
// Enums count: 2
|
||||
namespace libresourcesystem_so {
|
||||
// Alignment: 1
|
||||
// Members count: 9
|
||||
enum class FuseVariableType_t : uint8_t {
|
||||
INVALID = 0x0,
|
||||
BOOL = 0x1,
|
||||
INT8 = 0x2,
|
||||
INT16 = 0x3,
|
||||
INT32 = 0x4,
|
||||
UINT8 = 0x5,
|
||||
UINT16 = 0x6,
|
||||
UINT32 = 0x7,
|
||||
FLOAT32 = 0x8
|
||||
};
|
||||
// Alignment: 1
|
||||
// Members count: 2
|
||||
enum class FuseVariableAccess_t : uint8_t {
|
||||
WRITABLE = 0x0,
|
||||
READ_ONLY = 0x1
|
||||
};
|
||||
// Parent: None
|
||||
// Fields count: 0
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user