From 10a8d40e12b30beec0781deb0af894f66fe3561f Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Thu, 25 Jul 2024 08:20:05 +0200 Subject: turns: add initialization functions --- core/src/init.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 core/src/init.cpp (limited to 'core/src') 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(participant{}); + static_cast(turn_order{}); + } + +} // namespace turns::core \ No newline at end of file -- cgit v1.2.3