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 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCAPI bool $setup(::FilterTest::Definition const& definition, ::FilterInputs const& inputs);
67
68 MCAPI bool $evaluate(::FilterContext const& context) const;
69
70 MCAPI ::std::string_view $getName() const;
71
72 MCFOLD ::Json::Value $_serializeValue() const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCAPI static void** $vftable();
79 // NOLINTEND
80};
Definition ActorInWeatherTest.h:15
Definition FilterTest.h:13
Definition FilterContext.h:5
Definition FilterInputs.h:14
Definition FilterTest.h:21
Definition context.h:5
Definition Alias.h:14