diff options
Diffstat (limited to 'structs.h')
| -rw-r--r-- | structs.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/structs.h b/structs.h new file mode 100644 index 0000000..a82975d --- /dev/null +++ b/structs.h @@ -0,0 +1,11 @@ +#ifndef STRUCTS_H_ +#define STRUCTS_H_ + +struct Position_s { + size_t x; + size_t y; +}; + +typedef struct Position_s Position; + +#endif /* STRUCTS_H_ */ |
