LeviLamina
Loading...
Searching...
No Matches
RelationToCurrentUser.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7enum class RelationToCurrentUser : int {
8 Self = 0,
9 TwoWayFriend = 1,
10 Following = 2,
11 Follower = 3,
12 Stranger = 4,
13 Unknown = 5,
14};
15
16}