LeviLamina
Loading...
Searching...
No Matches
ItemTag.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/string/HashedString.h"
7
8struct ItemTag : public ::HashedString {
9public:
10 // prevent constructor by default
11 ItemTag();
12
13public:
14 // member functions
15 // NOLINTBEGIN
16 MCAPI explicit ItemTag(::std::string const& str);
17
18 MCAPI ~ItemTag();
19 // NOLINTEND
20
21public:
22 // constructor thunks
23 // NOLINTBEGIN
24 MCFOLD void* $ctor(::std::string const& str);
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32};
Definition HashedString.h:5
Definition ItemTag.h:8