12 lines
243 B
C
12 lines
243 B
C
#pragma once
|
|
|
|
|
|
/**
|
|
* Specify how many lines were cleared and how
|
|
*/
|
|
struct LineClear {
|
|
int lines; // the number of lines cleared
|
|
bool isSpin; // if the move was a spin
|
|
bool isMiniSpin; // if the move was a spin mini
|
|
};
|