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();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~TempEPtrBase() /*override*/;
33
34 virtual void invalidate() /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI TempEPtrBase(::TempEPtrBase const& e);
41
42 MCAPI ::Actor* _lock() const;
43
44 MCAPI void _set(::Actor* e);
45
46 MCAPI bool isValid() const;
47
48 MCAPI ::TempEPtrBase& operator=(::TempEPtrBase const& e);
49
50 MCAPI void unset();
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCAPI void* $ctor(::TempEPtrBase const& e);
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCAPI void $invalidate();
69
70
71 // NOLINTEND
72
73public:
74 // vftables
75 // NOLINTBEGIN
76 MCAPI static void** $vftable();
77 // NOLINTEND
78};
Definition Actor.h:125
Definition Level.h:255
Definition _TickPtr.h:5