mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-17 16:39:58 +08:00
11 lines
251 B
C++
11 lines
251 B
C++
#pragma once
|
|
|
|
namespace sdk {
|
|
class SchemaClassInfo {
|
|
public:
|
|
[[nodiscard]] std::uint16_t fields_count() const noexcept;
|
|
|
|
void for_each_field(const std::function<void(SchemaClassFieldData*)>& callback) const noexcept;
|
|
};
|
|
}
|