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/world/actor/_TickPtr.h"
7
8// auto generated forward declare list
9// clang-format off
10class Actor;
11// clang-format on
12
13class TempEPtrBase : public ::_TickPtr {
14public:
15 // member variables
16 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 TempEPtrBase& operator=(TempEPtrBase const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual ~TempEPtrBase() /*override*/;
34
35 // vIndex: 0
36 virtual void invalidate() /*override*/;
37 // NOLINTEND
38
39public:
40 // member functions
41 // NOLINTBEGIN
42 MCNAPI void _set(::Actor* e);
43
44 MCNAPI bool isValid() const;
45
46 MCNAPI void unset();
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCNAPI void $dtor();
53 // NOLINTEND
54
55public:
56 // virtual function thunks
57 // NOLINTBEGIN
58 MCNAPI void $invalidate();
59 // NOLINTEND
60
61public:
62 // vftables
63 // NOLINTBEGIN
64 MCNAPI static void** $vftable();
65 // NOLINTEND
66};
Definition Actor.h:102
Definition TempEPtrBase.h:13
static MCAPI void ** $vftable()
MCAPI void $invalidate()
MCAPI void $dtor()
MCAPI void _set(::Actor *e)
MCAPI bool isValid() const
MCAPI void unset()
Definition _TickPtr.h:5
Definition Alias.h:14