diff options
Diffstat (limited to 'gfx-iso/app/app.h')
-rw-r--r-- | gfx-iso/app/app.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/gfx-iso/app/app.h b/gfx-iso/app/app.h deleted file mode 100644 index 25e55eb..0000000 --- a/gfx-iso/app/app.h +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | #pragma once | ||
2 | |||
3 | typedef struct IsoGfx IsoGfx; | ||
4 | typedef struct IsoGfxApp IsoGfxApp; | ||
5 | |||
6 | typedef struct IsoGfxApp { | ||
7 | int pixel_scale; // 0 or 1 for 1:1 scale. | ||
8 | void* state; | ||
9 | void (*shutdown)(IsoGfx*, void* state); | ||
10 | void (*update)(IsoGfx*, void* state, double t, double dt); | ||
11 | void (*render)(IsoGfx*, void* state); | ||
12 | } IsoGfxApp; | ||