Added basic panning.

This commit is contained in:
2022-10-29 00:43:17 -05:00
parent 1cb3ba87f8
commit 4018c8bad2
6 changed files with 129 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#ifndef LIST_H
#define LIST_H
typedef struct {
unsigned int Capcity;
unsigned int Size;
char** Strings;
} List;
List* CreateList(void);
#endif