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
20public:
21 // prevent constructor by default
22 ResourceLocationPair(ResourceLocationPair const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCNAPI_C ResourceLocationPair();
28
29 MCNAPI_C ResourceLocationPair(::ResourceLocation const& location, ::PackIdVersion const& packId, int packPosition);
30
31 MCNAPI_C ::ResourceLocationPair& operator=(::ResourceLocationPair&&);
32
33 MCNAPI_C ::ResourceLocationPair& operator=(::ResourceLocationPair const&);
34
35 MCNAPI_C ~ResourceLocationPair();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCNAPI_C void* $ctor();
42
43 MCNAPI_C void* $ctor(::ResourceLocation const& location, ::PackIdVersion const& packId, int packPosition);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCNAPI_C void $dtor();
50 // NOLINTEND
51};
Definition ResourceLocation.h:15
Definition PackIdVersion.h:10
Definition Alias.h:14