summaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
Diffstat (limited to 'core/src')
-rw-r--r--core/src/init.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/src/init.cpp b/core/src/init.cpp
new file mode 100644
index 0000000..258aceb
--- /dev/null
+++ b/core/src/init.cpp
@@ -0,0 +1,15 @@
+#include "turns/core/init.hpp"
+
+#include "turns/core/participant.hpp"
+#include "turns/core/turn_order.hpp"
+
+namespace turns::core
+{
+
+ auto register_types() -> void
+ {
+ static_cast<void>(participant{});
+ static_cast<void>(turn_order{});
+ }
+
+} // namespace turns::core \ No newline at end of file