aboutsummaryrefslogtreecommitdiffstats
path: root/src/user/ThreeVideo.ts
blob: bbce0386fc2ac4bf5dd864188ff520f8796f8bd7 (plain) (blame)
1
2
3
4
5
6
7
8
import { Video as BaseVideo, type FrameTime, type InitConfig } from '$/lib/Player/Video';
import * as THREE from 'three';

export default abstract class ThreeVideo extends BaseVideo {
  public async init(config: InitConfig): Promise<void> {

  }
}