mirror of
https://github.com/a2x/cs2-dumper.git
synced 2026-04-17 16:39:58 +08:00
11 lines
210 B
C++
11 lines
210 B
C++
#pragma once
|
|
|
|
namespace sdk {
|
|
class SchemaSystem {
|
|
public:
|
|
static SchemaSystem* get() noexcept;
|
|
|
|
[[nodiscard]] std::vector<SchemaSystemTypeScope*> type_scopes() const noexcept;
|
|
};
|
|
}
|