forked from vergnet/application-amicale
39 lines
668 B
JavaScript
39 lines
668 B
JavaScript
// @flow
|
|
|
|
import BaseShape from "./BaseShape";
|
|
|
|
export default class ShapeO extends BaseShape {
|
|
|
|
#colors: Object;
|
|
|
|
constructor(colors: Object) {
|
|
super();
|
|
this.position.x = 4;
|
|
this.#colors = colors;
|
|
}
|
|
|
|
getColor(): string {
|
|
return this.#colors.tetrisO;
|
|
}
|
|
|
|
getShapes() {
|
|
return [
|
|
[
|
|
[1, 1],
|
|
[1, 1],
|
|
],
|
|
[
|
|
[1, 1],
|
|
[1, 1],
|
|
],
|
|
[
|
|
[1, 1],
|
|
[1, 1],
|
|
],
|
|
[
|
|
[1, 1],
|
|
[1, 1],
|
|
],
|
|
];
|
|
}
|
|
}
|