LeviLamina
Loading...
Searching...
No Matches
RealmsServicePackSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/resource/PackOrigin.h"
7#include "mc/deps/core/resource/PackType.h"
8#include "mc/resources/PackSource.h"
9
10// auto generated forward declare list
11// clang-format off
12class Pack;
15// clang-format on
16
17namespace Realms {
18
19class RealmsServicePackSource : public ::PackSource {
20public:
21 // member variables
22 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 RealmsServicePackSource& operator=(RealmsServicePackSource const&);
30 RealmsServicePackSource(RealmsServicePackSource const&);
31 RealmsServicePackSource();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ~RealmsServicePackSource() /*override*/ = default;
37
38 virtual ::PackOrigin getPackOrigin() const /*override*/;
39
40 virtual ::PackType getPackType() const /*override*/;
41
42 virtual ::PackSourceLoadResult _loadImpl(::PackSourceLoadOptions&&) /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48#ifdef LL_PLAT_C
49 MCNAPI int64 getRealmId() const;
50
51 MCNAPI void setPackContent(::std::vector<::gsl::not_null<::std::shared_ptr<::Pack>>>&& servicePackContent);
52#endif
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI ::PackOrigin $getPackOrigin() const;
59
60 MCNAPI ::PackType $getPackType() const;
61
62 MCNAPI ::PackSourceLoadResult $_loadImpl(::PackSourceLoadOptions&&);
63
64
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCNAPI static void** $vftable();
71 // NOLINTEND
72};
73
74} // namespace Realms
Definition Pack.h:28
MCAPI::PackType $getPackType() const
static MCAPI void ** $vftable()
MCAPI::PackOrigin $getPackOrigin() const
MCAPI::PackSourceLoadResult $_loadImpl(::PackSourceLoadOptions &&)
Definition PackSourceLoadOptions.h:5
Definition PackSourceLoadResult.h:5
Definition Alias.h:14