LeviLamina
Loading...
Searching...
No Matches
FilterTestDimensionWeather.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/filters/FilterTest.h"
7
8// auto generated forward declare list
9// clang-format off
10struct FilterContext;
11struct FilterInputs;
12namespace Json { class Value; }
13// clang-format on
14
16public:
17 // FilterTestDimensionWeather inner types define
18 enum class WeatherType : int {
19 Undefined = -1,
20 Clear = 0,
21 Precipitation = 1,
22 Thunderstorm = 2,
23 };
24
25public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<4, 4, ::FilterTestDimensionWeather::WeatherType> mWeather;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual bool setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs) /*override*/;
36
37 // vIndex: 2
38 virtual bool evaluate(::FilterContext const& context) const /*override*/;
39
40 // vIndex: 4
41 virtual ::std::string_view getName() const /*override*/;
42
43 // vIndex: 6
44 virtual ::Json::Value _serializeValue() const /*override*/;
45
46 // vIndex: 0
47 virtual ~FilterTestDimensionWeather() /*override*/ = default;
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs);
60
61 MCAPI bool $evaluate(::FilterContext const& context) const;
62
63 MCAPI ::std::string_view $getName() const;
64
65 MCFOLD ::Json::Value $_serializeValue() const;
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
Definition FilterTestDimensionWeather.h:15
Definition FilterTest.h:13
Definition FilterContext.h:5
Definition FilterInputs.h:14
Definition FilterTest.h:21
Definition context.h:5