LeviLamina
Loading...
Searching...
No Matches
EntitySubsensor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class Actor;
8struct Tick;
9// clang-format on
10
12public:
13 // member variables
14 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 EntitySubsensor& operator=(EntitySubsensor const&);
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI void senseEntities(
35 ::Actor& actor,
36 ::gsl::span<::gsl::not_null<::Actor*>> const& nearbyActors,
37 ::Tick const& currentTick,
38 bool relativeRange,
39 bool canFireEventWithNoEntities
40 );
41
42 MCAPI ~EntitySubsensor();
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCAPI void $dtor();
49 // NOLINTEND
50};
Definition Actor.h:104
Definition EntitySubsensor.h:11
Definition Tick.h:5
Definition Alias.h:14