소스 검색

test: minor changes

Michele Caini 3 년 전
부모
커밋
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>
 #include <entt/core/attribute.h>
 
 
-struct ENTT_API message {
+struct message {
     int payload;
     int payload;
 };
 };
 
 
-struct ENTT_API event {};
+struct event {};
 
 
 #endif
 #endif

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

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

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

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