11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { GLContextObject } from "./GLContext";
|
|
|
|
class BaseCube extends GLContextObject {
|
|
|
|
onLoad() {
|
|
throw new Error("Method not implemented.");
|
|
}
|
|
}
|
|
|
|
export default GLContextObject;
|
|
export { GLContextObject }; |