LeviLamina
Loading...
Searching...
No Matches
IInvitesApi.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/network/realms/GenericStatus.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Invites { struct Invite; }
11// clang-format on
12
13namespace Realms {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~IInvitesApi() = default;
21
22 // vIndex: 1
23 virtual void getPendingInviteCount(::std::function<void(::Realms::GenericStatus, int)>) = 0;
24
25 // vIndex: 2
26 virtual void getPendingInviteCountFriendsOnly(
27 ::std::function<void(::Realms::GenericStatus, int)>,
28 ::std::vector<::std::string> const&
29 ) = 0;
30
31 // vIndex: 3
32 virtual void
33 listInvites(::std::function<void(::Realms::GenericStatus, ::std::vector<::Invites::Invite>)>, bool) = 0;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41};
42
43} // namespace Realms
Definition IInvitesApi.h:15