aboutsummaryrefslogtreecommitdiff
path: root/src/common.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common.hpp')
-rw-r--r--src/common.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/common.hpp b/src/common.hpp
new file mode 100644
index 0000000..1c64c34
--- /dev/null
+++ b/src/common.hpp
@@ -0,0 +1,11 @@
+#pragma once
+
+// clang-format off
+#define MSG_INFO "[INFO] "
+#define MSG_WARN "[WARN] "
+#define MSG_ERROR "[ERRO] "
+// clang-format on
+
+struct Pt {
+ int x, y;
+};