1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

Initial commit: Closed loop of TS->Rust->TS

This commit is contained in:
Emil Ernerfeldt
2018-12-23 19:42:30 +01:00
commit 856bbf4dae
14 changed files with 701 additions and 0 deletions

11
docs/emgui.d.ts vendored Normal file
View File

@@ -0,0 +1,11 @@
/* tslint:disable */
export function show_gui(arg0: string): string;
export class Input {
free(): void;
screen_width: number
screen_height: number
mouse_x: number
mouse_y: number
}