LeviLamina
Loading...
Searching...
No Matches
ServicePack.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/PathBuffer.h"
7
8// auto generated forward declare list
9// clang-format off
10struct PackIdVersion;
11// clang-format on
12
13struct ServicePack {
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21#ifdef LL_PLAT_S
22public:
23 // prevent constructor by default
24 ServicePack& operator=(ServicePack const&);
25 ServicePack(ServicePack const&);
26 ServicePack();
27
28#else // LL_PLAT_C
29public:
30 // prevent constructor by default
31 ServicePack& operator=(ServicePack const&);
32 ServicePack();
33
34#endif
35public:
36 // member functions
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI ServicePack(::ServicePack const&);
40
41 MCNAPI ServicePack(::PackIdVersion packId, ::Core::PathBuffer<::std::string> downloadUrl);
42#endif
43 // NOLINTEND
44
45public:
46 // constructor thunks
47 // NOLINTBEGIN
48#ifdef LL_PLAT_C
49 MCNAPI void* $ctor(::ServicePack const&);
50
51 MCNAPI void* $ctor(::PackIdVersion packId, ::Core::PathBuffer<::std::string> downloadUrl);
52#endif
53 // NOLINTEND
54};
Definition PathBuffer.h:8
Definition PackIdVersion.h:10
Definition Alias.h:14