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
26 MCNAPI PieceWeight(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
27
28 MCNAPI ~PieceWeight();
29 // NOLINTEND
30
31public:
32 // constructor thunks
33 // NOLINTBEGIN
34 MCNAPI void* $ctor(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42};
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)
Definition Alias.h:14