mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-17 16:39:58 +08:00
11 lines
203 B
C++
11 lines
203 B
C++
#pragma once
|
|
|
|
namespace sdk {
|
|
class SchemaClassFieldData {
|
|
public:
|
|
[[nodiscard]] std::string name() const noexcept;
|
|
|
|
[[nodiscard]] std::uint16_t offset() const noexcept;
|
|
};
|
|
}
|