/* * SPDX-FileCopyrightText: 2025 Felix Morgner * SPDX-License-Identifier: LGPL-2.1-only */ #include "init.hpp" #include "participant_editor.hpp" #include "participant_row.hpp" #include "preferences.hpp" #include "tracker.hpp" #include "turn_order_view.hpp" #include auto Turns::gui::init() -> void { g_type_ensure(ParticipantRow{nullptr}.get_type()); g_type_ensure(ParticipantEditor{nullptr}.get_type()); g_type_ensure(Preferences{}.get_type()); g_type_ensure(Tracker{{}, {}}.get_type()); g_type_ensure(TurnOrderView{}.get_type()); }