rendering a board of squares
This commit is contained in:
7
src/square.js
Normal file
7
src/square.js
Normal file
@@ -0,0 +1,7 @@
|
||||
import Point from './point.js';
|
||||
|
||||
export default class Square extends Point {
|
||||
constructor(x, y) {
|
||||
super(x, y);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user