base2020/src/index.ts

8 lines
208 B
TypeScript
Raw Normal View History

import { Select } from "./Applet/Init";
import { BindTests } from "./Ecs/test";
import { Main } from "./Game/Main";
Select("#GameCanvas").forEachCanvas((c, cx, keys) => new Main(c, cx, keys));
BindTests();