Skip to content

Commit 447dcf8

Browse files
committed
feature: create structs.h
1 parent 3cdcdb4 commit 447dcf8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

libs/structs.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
#ifndef LIBS_STRUCTS_H_INCLUDED
3+
#define LIBS_STRUCTS_H_INCLUDED
4+
5+
#include <stdlib.h>
6+
7+
typedef struct {
8+
size_t x;
9+
size_t y;
10+
} Position;
11+
12+
#endif // LIBS_STRUCTS_H_INCLUDED

0 commit comments

Comments
 (0)