From fe40ce26ec975c2e2f89409913321064a7876d5c Mon Sep 17 00:00:00 2001 From: Kirill Petrashin Date: Tue, 10 Mar 2026 18:59:23 +0300 Subject: Initial commit --- structs.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 structs.h (limited to 'structs.h') 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_ */ -- cgit v1.2.3