From 48983d7196cecd1acfb6e89aba8f74f014880037 Mon Sep 17 00:00:00 2001 From: MrKBear Date: Wed, 9 Feb 2022 17:28:13 +0800 Subject: [PATCH] Add GLObject 3D --- source/GLRender/GLObject.ts | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 source/GLRender/GLObject.ts diff --git a/source/GLRender/GLObject.ts b/source/GLRender/GLObject.ts new file mode 100644 index 0000000..b21d613 --- /dev/null +++ b/source/GLRender/GLObject.ts @@ -0,0 +1,8 @@ +import { GLContextObject } from "./GLContext"; +import { EventType } from "@Model/Emitter"; + +export abstract class GLObject3D< + E extends Record = {} +> extends GLContextObject { + +}; \ No newline at end of file