LeviLamina
Loading...
Searching...
No Matches
CommandIntegerRange.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<4, 4, int> mMinValue;
10 ::ll::TypedStorage<4, 4, int> mMaxValue;
11 ::ll::TypedStorage<1, 1, bool> mInvert;
12 ::ll::TypedStorage<1, 1, bool> mInclusive;
13 // NOLINTEND
14
15public:
16 // member functions
17 // NOLINTBEGIN
18 MCAPI CommandIntegerRange();
19
20 MCAPI CommandIntegerRange(int minVal, int maxVal, bool invert, bool inclusive);
21
22 MCAPI bool isWithinRange(int value) const;
23 // NOLINTEND
24
25public:
26 // constructor thunks
27 // NOLINTBEGIN
28 MCAPI void* $ctor();
29
30 MCAPI void* $ctor(int minVal, int maxVal, bool invert, bool inclusive);
31 // NOLINTEND
32};
Definition CommandIntegerRange.h:5