diff options
Diffstat (limited to 'src/crepe/api/Point.h')
-rw-r--r-- | src/crepe/api/Point.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/crepe/api/Point.h b/src/crepe/api/Point.h new file mode 100644 index 0000000..b47b7e6 --- /dev/null +++ b/src/crepe/api/Point.h @@ -0,0 +1,11 @@ +#pragma once + +namespace crepe::api { + +class Point { +public: + double x; + double y; +}; + +} // namespace crepe::api |