blob: f10521af8f733a67904ae629639df9e3cce3243d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "turns/core/init.hpp"
#include "turns/ui/widgets/participant_row.hpp"
#include "turns/ui/widgets/turn_order_view.hpp"
namespace turns::app
{
auto register_types() -> void
{
static_cast<void>(widgets::participant_row{{}});
static_cast<void>(widgets::turn_order_view{{}});
}
} // namespace turns::core
|