2020-03-25 03:47:04 +00:00
|
|
|
import { Select } from "./Applet/Init";
|
|
|
|
import { BindTests } from "./Ecs/test";
|
|
|
|
import { Main } from "./Game/Main";
|
|
|
|
|
2020-04-05 01:48:50 +00:00
|
|
|
/* // Hot Module Reloading stub, if that's viable
|
|
|
|
* declare const module: any;
|
|
|
|
* if(module.hot) {
|
|
|
|
* const gen = module.hot.data?.gen ?? 0;
|
|
|
|
* module.hot.accept();
|
|
|
|
* module.hot.dispose((data: any) => {
|
|
|
|
* data.gen = gen + 1;
|
|
|
|
* });
|
|
|
|
* }
|
|
|
|
*/
|
|
|
|
|
2020-03-25 03:47:04 +00:00
|
|
|
Select("#GameCanvas").forEachCanvas((c, cx, keys) => new Main(c, cx, keys));
|
|
|
|
|
|
|
|
BindTests();
|