cs2-dumper/include/sdk/c_schema_class_field_data.hpp

11 lines
213 B
C++
Raw Normal View History

2023-09-08 15:59:09 +08:00
#pragma once
namespace sdk {
class SchemaClassFieldData_t {
public:
[[nodiscard]] std::string get_name() const noexcept;
[[nodiscard]] std::uint16_t get_offset() const noexcept;
};
}