transfered from codeberg

This commit is contained in:
2026-03-26 14:46:39 -05:00
parent 630f28bb7e
commit 5ed2173793
136 changed files with 14932 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
#include "display.h"
const int screen_height = 300;
const int screen_width = 600;

View File

@@ -0,0 +1,8 @@
#ifndef display_h
#define display_h
extern const int screen_width;
extern const int screen_height;
#endif