forked from vergnet/application-amicale
41 lines
826 B
JavaScript
41 lines
826 B
JavaScript
// @flow
|
|
|
|
import BaseShape from "./BaseShape";
|
|
import type {CustomTheme} from "../../../managers/ThemeManager";
|
|
|
|
export default class ShapeS extends BaseShape {
|
|
|
|
constructor(theme: CustomTheme) {
|
|
super(theme);
|
|
this.position.x = 3;
|
|
}
|
|
|
|
getColor(): string {
|
|
return this.theme.colors.tetrisS;
|
|
}
|
|
|
|
getShapes() {
|
|
return [
|
|
[
|
|
[0, 1, 1],
|
|
[1, 1, 0],
|
|
[0, 0, 0],
|
|
],
|
|
[
|
|
[0, 1, 0],
|
|
[0, 1, 1],
|
|
[0, 0, 1],
|
|
],
|
|
[
|
|
[0, 0, 0],
|
|
[0, 1, 1],
|
|
[1, 1, 0],
|
|
],
|
|
[
|
|
[1, 0, 0],
|
|
[1, 1, 0],
|
|
[0, 1, 0],
|
|
],
|
|
];
|
|
}
|
|
}
|