diff options
author | Christian C <cc@localhost> | 2025-03-02 18:43:40 -0800 |
---|---|---|
committer | Christian C <cc@localhost> | 2025-03-02 18:43:40 -0800 |
commit | 0f1d49179b5ff51bc3f00e4527c4010f09440b25 (patch) | |
tree | dd478ac8defca11ff76569b565b1949d47099286 /src/lib/lib.c | |
parent | a2daed4f50ffa8142b25cd040a1f25283fa88ace (diff) |
Iteration 1
Diffstat (limited to 'src/lib/lib.c')
-rw-r--r-- | src/lib/lib.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/lib.c b/src/lib/lib.c index ea971fd..c1f26fc 100644 --- a/src/lib/lib.c +++ b/src/lib/lib.c @@ -1,3 +1,4 @@ -#include <stdint.h> +#include <lib/lib.h> -const uint32_t SIZE = 5; +const uint32_t SCREEN_WIDTH = 640; +const uint32_t SCREEN_HEIGHT = 480; |