LeviLamina
Loading...
Searching...
No Matches
ResourceLocationPair.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
8struct PackIdVersion;
9// clang-format on
10
11class ResourceLocationPair {
12public:
13 // member variables
14 // NOLINTBEGIN
18 // NOLINTEND
19
20#ifdef LL_PLAT_S
21public:
22 // prevent constructor by default
23 ResourceLocationPair& operator=(ResourceLocationPair const&);
24 ResourceLocationPair(ResourceLocationPair const&);
25 ResourceLocationPair();
26
27#else // LL_PLAT_C
28public:
29 // prevent constructor by default
30 ResourceLocationPair(ResourceLocationPair const&);
31
32#endif
33public:
34 // member functions
35 // NOLINTBEGIN
36#ifdef LL_PLAT_C
37 MCNAPI ResourceLocationPair();
38
39 MCNAPI ResourceLocationPair(::ResourceLocation const& location, ::PackIdVersion const& packId, int packPosition);
40
41 MCNAPI ::ResourceLocationPair& operator=(::ResourceLocationPair&&);
42
43 MCNAPI ::ResourceLocationPair& operator=(::ResourceLocationPair const&);
44
45 MCNAPI ~ResourceLocationPair();
46#endif
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52#ifdef LL_PLAT_C
53 MCNAPI void* $ctor();
54
55 MCNAPI void* $ctor(::ResourceLocation const& location, ::PackIdVersion const& packId, int packPosition);
56#endif
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62#ifdef LL_PLAT_C
63 MCNAPI void $dtor();
64#endif
65 // NOLINTEND
66};
Definition ResourceLocation.h:15
Definition PackIdVersion.h:10
Definition Alias.h:14