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