aboutsummaryrefslogtreecommitdiffstats
path: root/src/user/ThreeVideo.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/user/ThreeVideo.ts')
-rw-r--r--src/user/ThreeVideo.ts8
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> {
+
+ }
+}