Added 'zooming', maybe not a great way to do it but it'll do for now.
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user