LeviLamina
Loading...
Searching...
No Matches
ActorInWeatherTest.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 // ActorInWeatherTest inner types define
18 enum class WeatherType : int {
19 Undefined = -1,
20 Clear = 0,
21 Rain = 1,
22 Snow = 2,
23 Thunderstorm = 3,
24 };
25
26public:
27 // member variables
28 // NOLINTBEGIN
30 // NOLINTEND
31
32public:
33 // prevent constructor by default
34 ActorInWeatherTest& operator=(ActorInWeatherTest const&);
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 // vIndex: 1
42 virtual bool setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs) /*override*/;
43
44 // vIndex: 2
45 virtual bool evaluate(::FilterContext const& context) const /*override*/;
46
47 // vIndex: 4
48 virtual ::std::string_view getName() const /*override*/;
49
50 // vIndex: 6
51 virtual ::std::optional<::std::variant<bool, int, float, ::std::string>> getValue() const /*override*/;
52
53 // vIndex: 8
54 virtual ::Json::Value _serializeValue() const /*override*/;
55
56 // vIndex: 0
57 virtual ~ActorInWeatherTest() /*override*/ = default;
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs);
64
65 MCNAPI bool $evaluate(::FilterContext const& context) const;
66
67 MCNAPI ::std::string_view $getName() const;
68
69 MCNAPI ::std::optional<::std::variant<bool, int, float, ::std::string>> $getValue() const;
70
71 MCNAPI ::Json::Value $_serializeValue() const;
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
Definition ActorInWeatherTest.h:15
static MCAPI void ** $vftable()
MCAPI ::std::optional<::std::variant< bool, int, float, ::std::string > > $getValue() const
MCAPI::std::string_view $getName() const
MCAPI bool $evaluate(::FilterContext const &context) const
MCAPI bool $setup(::FilterTest::Definition const &definition, ::FilterInputs const &inputs)
MCAPI::Json::Value $_serializeValue() const
Definition FilterTest.h:13
Definition FilterContext.h:5
Definition FilterInputs.h:14
Definition FilterTest.h:21
Definition context.h:5
Definition Alias.h:14