diff options
Diffstat (limited to 'client/src/hwid')
| -rw-r--r-- | client/src/hwid/hwid.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/client/src/hwid/hwid.h b/client/src/hwid/hwid.h new file mode 100644 index 0000000..8fae489 --- /dev/null +++ b/client/src/hwid/hwid.h @@ -0,0 +1,10 @@ +#pragma once + + +namespace hwid { + __forceinline std::string fetch() { + nlohmann::json j; + j["uid"] = 0; + return j.dump(); + } +};
\ No newline at end of file |