LeviLamina
Loading...
Searching...
No Matches
IContentApi.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 Realms { struct Content; }
11namespace Realms { struct RealmId; }
12// clang-format on
13
14namespace Realms {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IContentApi() = default;
22
23 // vIndex: 1
24 virtual void
25 applyContentOnRealm(::Realms::RealmId const, ::std::vector<::Realms::Content> const&, ::std::function<void(::Realms::GenericStatus)>) = 0;
26
27 // vIndex: 2
28 virtual void
29 fetchAppliedPacks(::Realms::RealmId const, ::std::function<void(::Realms::GenericStatus, ::std::vector<::Realms::Content>)>) = 0;
30
31 // vIndex: 3
32 virtual void
33 checkForExistingPack(::std::string const&, ::std::string const&, ::std::function<void(::Realms::GenericStatus, bool)>) = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
48
49} // namespace Realms
Definition IContentApi.h:16
Definition RealmId.h:10