LeviLamina
Loading...
Searching...
No Matches
ActorInteraction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 ActorInteraction& operator=(ActorInteraction const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI explicit ActorInteraction(bool noCapture);
24
25 MCNAPI void capture(::std::function<void()> interactFunc);
26
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCNAPI void* $ctor(bool noCapture);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI void $dtor();
40 // NOLINTEND
41};
Definition ActorInteraction.h:5
MCAPI ~ActorInteraction()
MCAPI void capture(::std::function< void()> interactFunc)
MCAPI void $dtor()
MCAPI void * $ctor(bool noCapture)
MCAPI ActorInteraction(bool noCapture)
Definition Alias.h:14