UNPKG

@osbjs/osbjs

Version:

a minimalist osu! storyboarding framework

11 lines (10 loc) 360 B
import { Hitsound } from '../Enums/Hitsound'; import { IHitSample } from '../Interfaces/IHitSample'; export declare abstract class HitObject { x: number; y: number; hitsound: Hitsound; startTime: number; hitSample: IHitSample; constructor(x: number, y: number, startTime: number, hitsound: Hitsound, hitSample: IHitSample); }