summaryrefslogtreecommitdiffstats
path: root/include/godot_cpp/core/Transform.hpp
diff options
context:
space:
mode:
authorKarroffel <therzog@mail.de>2017-03-15 23:19:58 +0100
committerKarroffel <therzog@mail.de>2017-03-15 23:19:58 +0100
commit8d63048c6df08da5f0f88b62b2868c6938c222b7 (patch)
treec9113e2139838b11d3040469104a153d1f45a4af /include/godot_cpp/core/Transform.hpp
parentbce9ac109d63d67c3e7f0b25df8aa9d72e094d1b (diff)
downloadredot-cpp-8d63048c6df08da5f0f88b62b2868c6938c222b7.tar.gz
Windows compatibility
Diffstat (limited to 'include/godot_cpp/core/Transform.hpp')
-rw-r--r--include/godot_cpp/core/Transform.hpp12
1 files changed, 11 insertions, 1 deletions
diff --git a/include/godot_cpp/core/Transform.hpp b/include/godot_cpp/core/Transform.hpp
index bb47693..74b2ef0 100644
--- a/include/godot_cpp/core/Transform.hpp
+++ b/include/godot_cpp/core/Transform.hpp
@@ -1,6 +1,16 @@
#ifndef TRANSFORM_H
#define TRANSFORM_H
+#if defined(_WIN32)
+# ifdef _GD_CPP_CORE_API_IMPL
+# define GD_CPP_CORE_API __declspec(dllexport)
+# else
+# define GD_CPP_CORE_API __declspec(dllimport)
+# endif
+#else
+# define GD_CPP_CORE_API
+#endif
+
#include "Basis.hpp"
#include "Plane.hpp"
@@ -8,7 +18,7 @@
namespace godot {
-class Transform {
+class GD_CPP_CORE_API Transform {
public:
Basis basis;