diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-09 21:47:23 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-09 21:47:23 +0100 |
commit | 8ceb79db1d0687bba005cef4a77bb889bf7ec3c3 (patch) | |
tree | b7c13359f652506d60c8556ea386ae8d50bfc5bc /src/position.c | |
parent | 097aa95c1f0cb159e7d9d0a3edf9284c421ee298 (diff) |
refactor: rewrite to c++
Diffstat (limited to 'src/position.c')
-rw-r--r-- | src/position.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/position.c b/src/position.c deleted file mode 100644 index a7465ab..0000000 --- a/src/position.c +++ /dev/null @@ -1,8 +0,0 @@ -#include "position.h" - -Position position_create(unsigned int x, unsigned int y) -{ - Position pos = {.x = x, .y = y}; - - return pos; -} |