diff options
| author | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-10 18:59:23 +0300 |
|---|---|---|
| committer | Kirill Petrashin <kirill8201@yandex.ru> | 2026-03-10 18:59:23 +0300 |
| commit | fe40ce26ec975c2e2f89409913321064a7876d5c (patch) | |
| tree | 143eccd14ef8270cf102aaf658abfadbe5f532dd /structs.h | |
Initial commit
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_ */ |
