diff options
| author | realtradam <[email protected]> | 2022-08-31 08:29:23 -0400 |
|---|---|---|
| committer | realtradam <[email protected]> | 2022-08-31 08:29:23 -0400 |
| commit | c51ded6c4efef4e0ef5a157a72ae79c402b7964b (patch) | |
| tree | 46802e9bfaae9d97538ab94285c3357f7ca65c94 /src/backend/test.h | |
| parent | 8caf4473882f3eab9018b0ed4500792d459bdc98 (diff) | |
| download | FelBind-c51ded6c4efef4e0ef5a157a72ae79c402b7964b.tar.gz FelBind-c51ded6c4efef4e0ef5a157a72ae79c402b7964b.zip | |
starting work on the backend system
Diffstat (limited to 'src/backend/test.h')
| -rw-r--r-- | src/backend/test.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/backend/test.h b/src/backend/test.h new file mode 100644 index 0000000..c7b5ea9 --- /dev/null +++ b/src/backend/test.h @@ -0,0 +1,12 @@ +void InitWindow(int width, int height, const char *title); + +typedef struct Rectangle { + float height; // Rectangle height +} Rectangle; + +typedef struct Texture { + unsigned int id; // OpenGL texture id + int format; // Data format (PixelFormat type) +} Texture; + +typedef Texture Texture2D; |
