mirror of
https://github.com/a2x/cs2-dumper.git
synced 2025-04-16 05:35:36 +08:00
15 lines
271 B
C++
15 lines
271 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
namespace sdk {
|
|
class CSchemaSystemTypeScope;
|
|
|
|
class CSchemaSystem {
|
|
public:
|
|
static CSchemaSystem* get() noexcept;
|
|
|
|
[[nodiscard]] std::vector<CSchemaSystemTypeScope*> get_type_scopes() const noexcept;
|
|
};
|
|
}
|