LeviLamina
Loading...
Searching...
No Matches
CloudClientCallback.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { struct CloudQueryResult; }
8namespace RakNet { struct CloudQueryRow; }
9// clang-format on
10
11namespace RakNet {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~CloudClientCallback() = default;
18
19 virtual void OnGet(::RakNet::CloudQueryResult*, bool*);
20
21 virtual void OnSubscriptionNotification(::RakNet::CloudQueryRow*, bool, bool*);
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
30
31} // namespace RakNet
Definition CloudClientCallback.h:13
Definition CloudQueryResult.h:7
Definition CloudQueryRow.h:7