diff options
Diffstat (limited to 'src/user/ThreeVideo.ts')
-rw-r--r-- | src/user/ThreeVideo.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/user/ThreeVideo.ts b/src/user/ThreeVideo.ts new file mode 100644 index 0000000..bbce038 --- /dev/null +++ b/src/user/ThreeVideo.ts @@ -0,0 +1,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> { + + } +} |