Added 'zooming', maybe not a great way to do it but it'll do for now.

This commit is contained in:
2022-10-29 23:29:58 -05:00
parent 4018c8bad2
commit 897186928e
7 changed files with 33 additions and 11 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef LIST_H
#define LIST_H
#include <SDL2/SDL_rect.h>
#include <SDL2/SDL_render.h>
#include <SDL2/SDL_ttf.h>
#include <SDL2/SDL.h>
typedef struct {
unsigned int Capcity;
unsigned int Size;
char** Strings;
} List;
List* CreateList(void);
#endif