mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-16 05:35:36 +08:00
11 lines
213 B
C++
11 lines
213 B
C++
#pragma once
|
|
|
|
namespace sdk {
|
|
class SchemaClassFieldData_t {
|
|
public:
|
|
[[nodiscard]] std::string get_name() const noexcept;
|
|
|
|
[[nodiscard]] std::uint16_t get_offset() const noexcept;
|
|
};
|
|
}
|