Files
Towards/external/entt/test/lib/dispatcher/shared/lib.cpp
T

10 lines
286 B
C++
Raw Normal View History

2026-07-18 14:31:15 +02:00
#include <entt/core/attribute.h>
#include <entt/signal/dispatcher.hpp>
#include "../../../common/boxed_type.h"
#include "../../../common/empty.h"
ENTT_API void trigger(entt::dispatcher &dispatcher) {
dispatcher.trigger<test::empty>();
dispatcher.trigger(test::boxed_int{2});
}