LeviLamina
Loading...
Searching...
No Matches
PieceWeight.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
6public:
7 // member variables
8 // NOLINTBEGIN
9 ::ll::TypedStorage<8, 32, ::std::string> pieceClass;
10 ::ll::TypedStorage<4, 4, int> weight;
11 ::ll::TypedStorage<4, 4, int> placeCount;
12 ::ll::TypedStorage<4, 4, int> maxPlaceCount;
13 ::ll::TypedStorage<4, 4, int> minDepth;
14 ::ll::TypedStorage<1, 1, bool> allowInRow;
15 // NOLINTEND
16
17public:
18 // prevent constructor by default
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI PieceWeight(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
25
26 MCAPI ~PieceWeight();
27 // NOLINTEND
28
29public:
30 // constructor thunks
31 // NOLINTBEGIN
32 MCAPI void* $ctor(::std::string const& pieceClass, int weight, int maxPlaceCount, int minDepth, bool allowInRow);
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCFOLD void $dtor();
39 // NOLINTEND
40};
Definition PieceWeight.h:5