LeviLamina
Loading...
Searching...
No Matches
PrioritizedGoal.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class BaseGoal;
8// clang-format on
9
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 8, ::std::unique_ptr<::BaseGoal>> mGoal;
15 ::ll::TypedStorage<4, 4, int> mPriority;
16 ::ll::TypedStorage<1, 1, bool> mUsed;
17 ::ll::TypedStorage<1, 1, bool> mToStart;
18 // NOLINTEND
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCFOLD int getPriority() const;
24
25 MCFOLD bool getToStart() const;
26
27 MCFOLD bool getUsed() const;
28
29 MCFOLD void setToStart(bool start);
30
31 MCAPI void setUsed(bool used);
32
33 MCAPI ~PrioritizedGoal();
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
Definition BaseGoal.h:11
Definition PrioritizedGoal.h:10