aboutsummaryrefslogtreecommitdiff
path: root/structs.h
diff options
context:
space:
mode:
authorKirill Petrashin <kirill8201@yandex.ru>2026-03-10 18:59:23 +0300
committerKirill Petrashin <kirill8201@yandex.ru>2026-03-10 18:59:23 +0300
commitfe40ce26ec975c2e2f89409913321064a7876d5c (patch)
tree143eccd14ef8270cf102aaf658abfadbe5f532dd /structs.h
Initial commit
Diffstat (limited to 'structs.h')
-rw-r--r--structs.h11
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_ */