types.h 289 B

1234567891011121314151617
  1. #ifndef ENTT_LIB_EMITTER_TYPES_H
  2. #define ENTT_LIB_EMITTER_TYPES_H
  3. #include <entt/core/attribute.h>
  4. #include <entt/signal/emitter.hpp>
  5. struct ENTT_API test_emitter
  6. : entt::emitter<test_emitter>
  7. {};
  8. struct ENTT_API message {
  9. int payload;
  10. };
  11. struct ENTT_API event {};
  12. #endif