LeviLamina
Loading...
Searching...
No Matches
PieceWeight.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
19 PieceWeight& operator=(PieceWeight const&);
22
23public:
24 // member functions
25 // NOLINTBEGIN
27
28 MCNAPI PieceWeight(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
29
30 MCNAPI ~PieceWeight();
31 // NOLINTEND
32
33public:
34 // constructor thunks
35 // NOLINTBEGIN
36 MCNAPI void* $ctor(::PieceWeight&&);
37
38 MCNAPI void* $ctor(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44 MCNAPI void $dtor();
45 // NOLINTEND
46};
Definition PieceWeight.h:5
MCAPI ~PieceWeight()
MCAPI PieceWeight(::std::string const &pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow)
MCAPI void $dtor()
MCAPI void * $ctor(::std::string const &pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow)
MCAPI void * $ctor(::PieceWeight &&)
MCAPI PieceWeight(::PieceWeight &&)
Definition Alias.h:14