ChatPlexSDK-BS 1.0.1-v6.2.0
C++ ChatPlex BeatSaber SDK
Loading...
Searching...
No Matches
MapParitySummary.hpp
1#pragma once
2
3#include "../../../CP_SDK/Utils/Json.hpp"
4
6
8 {
9 int errors = 0;
10 int warns = 0;
11 int resets = 0;
12
13 CP_SDK_JSON_OPERATORS_INLINE({
14 CP_SDK_JSON_SERIALIZE_INT32(errors);
15 CP_SDK_JSON_SERIALIZE_INT32(warns);
16 CP_SDK_JSON_SERIALIZE_INT32(resets);
17 },
18 {
19 CP_SDK_JSON_UNSERIALIZE_INT32(errors);
20 CP_SDK_JSON_UNSERIALIZE_INT32(warns);
21 CP_SDK_JSON_UNSERIALIZE_INT32(resets);
22 });
23 };
24
25}
BeatMaps aka BeatSaver models.
Definition MapDetail.hpp:12