LeviLamina
Loading...
Searching...
No Matches
SummonSpellData.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 SummonSpellData& operator=(SummonSpellData const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI SummonSpellData();
29
31
32 MCAPI ~SummonSpellData();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor();
39
40 MCAPI void* $ctor(::SummonSpellData const&);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCAPI void $dtor();
47 // NOLINTEND
48};
Definition SummonSpellData.h:5
Definition Alias.h:14