LeviLamina
Loading...
Searching...
No Matches
CommandWildcardInt.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class CommandWildcardInt {
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<1, 1, bool> mIsWildcard;
10 ::ll::TypedStorage<4, 4, int> mValue;
11 // NOLINTEND
12
13public:
14 // member functions
15 // NOLINTBEGIN
16 MCAPI CommandWildcardInt();
17
18 MCFOLD int getValue() const;
19
20 MCFOLD bool isWildcard() const;
21 // NOLINTEND
22
23public:
24 // constructor thunks
25 // NOLINTBEGIN
26 MCAPI void* $ctor();
27 // NOLINTEND
28};
29
30// clang-format off
31template <>
32MCAPI ::ll::type_id_ref Bedrock::typeid_storage_impl<class CommandRegistry, ::CommandWildcardInt>();
33// clang-format on