mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-19 03:15:36 +08:00
13 lines
275 B
C++
13 lines
275 B
C++
#pragma once
|
|
|
|
namespace sdk {
|
|
class SchemaClassFieldData_t;
|
|
|
|
class CSchemaClassInfo {
|
|
public:
|
|
[[nodiscard]] std::uint16_t get_fields_count() const noexcept;
|
|
|
|
[[nodiscard]] std::vector<SchemaClassFieldData_t*> get_fields() const noexcept;
|
|
};
|
|
}
|