julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame contribute delete
199 Bytes
import { Vector2 } from './../../math/Vector2';
import { Curve } from './../core/Curve';
export class SplineCurve extends Curve<Vector2> {
constructor(points?: Vector2[]);
points: Vector2[];
}