Add GLObject 3D

This commit is contained in:
2022-02-09 17:28:29 +08:00
parent e96a756af3
commit 48983d7196
+8
View File
@@ -0,0 +1,8 @@
import { GLContextObject } from "./GLContext";
import { EventType } from "@Model/Emitter";
export abstract class GLObject3D<
E extends Record<EventType, any> = {}
> extends GLContextObject<E> {
};