aboutsummaryrefslogtreecommitdiff
path: root/src/common.hpp
diff options
context:
space:
mode:
authorrtk0c <[email protected]>2025-04-24 12:25:33 -0700
committerrtk0c <[email protected]>2025-04-24 12:25:33 -0700
commitd5fd02d8eb387b477678ffbfb44303a38c105607 (patch)
treeef706d91dbcd8cd345034e791b7be9076d0897a8 /src/common.hpp
parent75585f4fb6f312195a47b16224d45e671858dac7 (diff)
Some draft ideas on simulation
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;
+};