diff options
author | quou <quou@disroot.org> | 2023-05-02 21:02:04 +1000 |
---|---|---|
committer | quou <quou@disroot.org> | 2023-05-02 21:02:04 +1000 |
commit | c1efdf9b0875f2a39488a86cd838947a24fab9fc (patch) | |
tree | b459d024fa99029758f8d2f8630470fe6060122e /config.h |
Initial commit.
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config.h b/config.h new file mode 100644 index 0000000..91363a9 --- /dev/null +++ b/config.h @@ -0,0 +1,18 @@ +#ifndef config_h +#define config_h + +#define game_name "malloc(bullet);" + +#define default_window_w 320 +#define default_window_h 240 + +#define renderer_w 320 +#define renderer_h 240 +#define renderer_scale 4 + +#define no_sound 1 + +/* 16 KB should be enough. */ +#define asset_memory (1024 * 1024 * 16) + +#endif |