test: minor changes

This commit is contained in:
Michele Caini
2022-10-28 18:41:41 +02:00
parent b1b143917b
commit 74bab529d2
3 changed files with 7 additions and 7 deletions

View File

@@ -3,10 +3,10 @@
#include <entt/core/attribute.h>
struct ENTT_API message {
struct message {
int payload;
};
struct ENTT_API event {};
struct event {};
#endif

View File

@@ -4,13 +4,13 @@
#include <entt/core/attribute.h>
#include <entt/signal/emitter.hpp>
struct ENTT_API test_emitter
struct test_emitter
: entt::emitter<test_emitter> {};
struct ENTT_API message {
struct message {
int payload;
};
struct ENTT_API event {};
struct event {};
#endif

View File

@@ -3,12 +3,12 @@
#include <entt/core/attribute.h>
struct ENTT_API position {
struct position {
int x;
int y;
};
struct ENTT_API velocity {
struct velocity {
double dx;
double dy;
};