Add GLObject 3D

This commit is contained in:
MrKBear 2022-02-09 17:28:13 +08:00
parent e96a756af3
commit 48983d7196

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> {
};