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/Triangle.js

7 lines
126 B
JavaScript

import { Element } from "./Element.js";
export class Triangle extends Element {
constructor() {
super();
}
}