add spade
This commit is contained in:
parent
bd91b46e23
commit
b540776077
1 changed files with 7 additions and 0 deletions
7
js/Spade.js
Normal file
7
js/Spade.js
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
import { Cone } from "./Cone.js";
|
||||||
|
|
||||||
|
export class Spade extends Cone {
|
||||||
|
constructor(color, level) {
|
||||||
|
super(color, level);
|
||||||
|
}
|
||||||
|
}
|
Reference in a new issue