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 ::Json::Value _serializeValue() const /*override*/;
52
53 // vIndex: 0
54 virtual ~ActorInWeatherTest() /*override*/ = default;
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCNAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs);
61
62 MCNAPI bool $evaluate(::FilterContext const& context) const;
63
64 MCNAPI ::std::string_view $getName() const;
65
66 MCNAPI ::Json::Value $_serializeValue() const;
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCNAPI static void** $vftable();
73 // NOLINTEND
74};
Definition ActorInWeatherTest.h:15
static MCAPI void ** $vftable()
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