LeviLamina
Loading...
Searching...
No Matches
BreedableType.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 BreedableType& operator=(BreedableType const&);
17
18public:
19 // member functions
20 // NOLINTBEGIN
21 MCNAPI BreedableType();
22
24
26 // NOLINTEND
27
28public:
29 // constructor thunks
30 // NOLINTBEGIN
31 MCNAPI void* $ctor();
32
33 MCNAPI void* $ctor(::BreedableType const&);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI void $dtor();
40 // NOLINTEND
41};
Definition BreedableType.h:5
MCAPI ~BreedableType()
MCAPI BreedableType()
MCAPI BreedableType(::BreedableType const &)
MCAPI void $dtor()
MCAPI void * $ctor(::BreedableType const &)
MCAPI void * $ctor()
Definition Alias.h:14