-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathmod.ts
37 lines (36 loc) · 807 Bytes
/
mod.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
export { Plugin } from "./src/Plugin.ts";
export { World } from "./src/World.ts";
export type { Renderer } from "./src/renderers/types.ts";
export { Scene } from "./src/scenes/mod.ts";
export { EventManager } from "./src/events/EventManager.ts";
export {
Arne16,
Atlas,
AtlasSprite,
C64,
CGA,
Entity,
FrameBuffer,
Group,
Image,
JMP,
MSX,
PICO8,
Rectangle,
Sprite,
TextureSprite,
} from "./src/entities/mod.ts";
export { TransformMatrix, Vector } from "./src/math/mod.ts";
export type { IVectorLike } from "./src/math/mod.ts";
export { Keys } from "./src/utils/Keycodes.ts";
export type {
Frame,
KeyEvent,
MouseDownEvent,
MouseMotionEvent,
PixelTexture,
RGBA,
spriteConfig,
WorldOptions,
} from "./src/types.ts";
export { hexToRGBA } from "./src/utils/mod.ts";