seed-engine
Version:
A Lightweight 2D game engine using WebGL2. The engine is designed on the focus of creating a bridge between creating and publishing games to the Seed Network as modules.
13 lines (12 loc) • 347 B
JavaScript
import Renderable from './Renderable';
import Matrix3 from '../render/WebGL/Matrix3';
/**
* Renderable2D is a renderable component which focusses on
* 2D shaders and matricies for 2D space rendering.
*/
export default class Renderable2D extends Renderable {
constructor() {
super();
this.className = 'Renderable2D';
}
}