LeviLamina
Loading...
Searching...
No Matches
OnFireSystem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/systems/ITickingSystem.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11// clang-format on
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual ~OnFireSystem() /*override*/ = default;
18 // NOLINTEND
19
20public:
21 // static functions
22 // NOLINTBEGIN
23 MCAPI_C static void onFireChanged(::Actor& actor);
24
25 MCAPI static void setOnFire(::Actor& actor, int seconds);
26
27 MCAPI static void setOnFireNoEffects(::Actor& actor, int seconds);
28
29 MCAPI static void stopFire(::Actor& actor);
30 // NOLINTEND
31};
Definition Actor.h:105
Definition ITickingSystem.h:15
Definition OnFireSystem.h:13