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.
19 lines (14 loc) • 344 B
JavaScript
import log from '../helper/Log';
import Test from '../helper/Test';
import Loader from '../../src/utils/Loader';
export default class NAMETESTHERE extends Test {
constructor() {
super('namename Test', 2);
}
steps() {
this.addStep('', () => {
});
this.addStep('', () => {
});
}
}