LeviLamina
Loading...
Searching...
No Matches
TempEPtrBase.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/legacy/ActorUniqueID.h"
7#include "mc/world/actor/_TickPtr.h"
8
9// auto generated forward declare list
10// clang-format off
11class Actor;
12class Level;
13// clang-format on
14
15class TempEPtrBase : public ::_TickPtr {
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 8, ::Actor*> tmp;
20 ::ll::TypedStorage<8, 8, ::ActorUniqueID> mEntityId;
21 ::ll::TypedStorage<8, 8, ::Level*> mLevel;
22 ::ll::TypedStorage<1, 1, bool> mHasLocked;
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 TempEPtrBase(TempEPtrBase const&);
28 TempEPtrBase();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~TempEPtrBase() /*override*/;
34
35 virtual void invalidate() /*override*/;
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI ::Actor* _lock() const;
42
43 MCAPI void _set(::Actor* e);
44
45 MCAPI bool isValid() const;
46
47 MCAPI ::TempEPtrBase& operator=(::TempEPtrBase const& e);
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCAPI void $dtor();
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59 MCAPI void $invalidate();
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCAPI static void** $vftable();
68 // NOLINTEND
69};
Definition Actor.h:114
Definition Level.h:253
Definition _TickPtr.h:5