This repository has been archived on 2022-12-05. You can view files and clone it, but cannot push or open issues or pull requests.
GeometryDash3D/js/Spade.js

12 lines
263 B
JavaScript
Raw Normal View History

2022-11-24 21:03:27 +01:00
import { Cone } from "./Cone.js";
export class Spade extends Cone {
constructor(color, level, startPos) {
super(color, level, startPos);
this.startPos = this.data.position.x + startPos;
this.data.position.x = this.startPos;
2022-11-24 21:03:27 +01:00
}
}