rendering a board of squares

This commit is contained in:
Gavin McDonald
2018-06-24 13:59:12 -04:00
parent 26c6813d95
commit bf37910877
9 changed files with 374 additions and 47 deletions

7
src/square.js Normal file
View File

@@ -0,0 +1,7 @@
import Point from './point.js';
export default class Square extends Point {
constructor(x, y) {
super(x, y);
}
}