1
0

emitter.h 231 B

1234567891011121314
  1. #ifndef ENTT_COMMON_EMITTER_H
  2. #define ENTT_COMMON_EMITTER_H
  3. #include <entt/signal/emitter.hpp>
  4. namespace test {
  5. struct emitter: entt::emitter<emitter> {
  6. using entt::emitter<emitter>::emitter;
  7. };
  8. } // namespace test
  9. #endif