Michele Caini 3 лет назад
Родитель
Сommit
74bab529d2
3 измененных файлов с 7 добавлено и 7 удалено
  1. 2 2
      test/lib/dispatcher/types.h
  2. 3 3
      test/lib/emitter/types.h
  3. 2 2
      test/lib/registry/types.h

+ 2 - 2
test/lib/dispatcher/types.h

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

+ 3 - 3
test/lib/emitter/types.h

@@ -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

+ 2 - 2
test/lib/registry/types.h

@@ -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;
 };