diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-01-09 23:20:08 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2022-01-09 23:20:08 -0500 |
commit | 481685b3bbb2b0270870dec5de87e60fc2d84d15 (patch) | |
tree | 5eaa4abf4cb800812389ce95af954e120f633e54 /src/discord/relationship.hpp | |
parent | f31d431517b27a88a95f6972de8fcf3206df1da1 (diff) | |
download | abaddon-portaudio-481685b3bbb2b0270870dec5de87e60fc2d84d15.tar.gz abaddon-portaudio-481685b3bbb2b0270870dec5de87e60fc2d84d15.zip |
format all
Diffstat (limited to 'src/discord/relationship.hpp')
-rw-r--r-- | src/discord/relationship.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/discord/relationship.hpp b/src/discord/relationship.hpp index d492bd3..1595502 100644 --- a/src/discord/relationship.hpp +++ b/src/discord/relationship.hpp @@ -3,19 +3,19 @@ #include "user.hpp" enum class RelationshipType { - None = 0, - Friend = 1, - Blocked = 2, - PendingIncoming = 3, - PendingOutgoing = 4, - Implicit = 5, + None = 0, + Friend = 1, + Blocked = 2, + PendingIncoming = 3, + PendingOutgoing = 4, + Implicit = 5, }; struct RelationshipData { // Snowflake UserID; this is the same as ID apparently but it looks new so i wont touch it RelationshipType Type; Snowflake ID; - // Unknown Nickname; // null + // Unknown Nickname; // null - friend void from_json(const nlohmann::json &j, RelationshipData &m); + friend void from_json(const nlohmann::json &j, RelationshipData &m); }; |