LeviLamina
Loading...
Searching...
No Matches
Shareable.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct Shareable {
6public:
7 // member variables
8 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 Shareable& operator=(Shareable const&);
28 Shareable(Shareable const&);
29 Shareable();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI void setCraftInto(::std::string const& name);
35
36 MCAPI void setItem(::std::string const& name);
37
38 MCAPI ~Shareable();
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCFOLD void $dtor();
45 // NOLINTEND
46};
Definition Alias.h:14