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
27 MCNAPI void setInteractText(::std::string const& text);
28
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(bool noCapture);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43};
Definition ActorInteraction.h:5
MCAPI ~ActorInteraction()
MCAPI void capture(::std::function< void()> interactFunc)
MCAPI void setInteractText(::std::string const &text)
MCAPI void $dtor()
MCAPI void * $ctor(bool noCapture)
MCAPI ActorInteraction(bool noCapture)
Definition Alias.h:14