diff options
author | Kahrl <kahrl@gmx.net> | 2013-06-06 22:57:38 +0200 |
---|---|---|
committer | Kahrl <kahrl@gmx.net> | 2013-06-06 22:57:38 +0200 |
commit | 773471750dbea73431934ac3736c23564da986b5 (patch) | |
tree | 612c520d341f0672a11f69d0118ac51ba368492a /src/script/cpp_api/s_entity.h | |
parent | 6b3e553dd5ca7f31a5e9fc68a3b7f3b59b85e511 (diff) | |
download | minetest-773471750dbea73431934ac3736c23564da986b5.tar.gz minetest-773471750dbea73431934ac3736c23564da986b5.tar.bz2 minetest-773471750dbea73431934ac3736c23564da986b5.zip |
Fix class/struct forward declaration inconsistencies (good on ya, MSVC)
Diffstat (limited to 'src/script/cpp_api/s_entity.h')
-rw-r--r-- | src/script/cpp_api/s_entity.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/script/cpp_api/s_entity.h b/src/script/cpp_api/s_entity.h index b95b6b4b4..8df9d7f00 100644 --- a/src/script/cpp_api/s_entity.h +++ b/src/script/cpp_api/s_entity.h @@ -23,8 +23,8 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "cpp_api/s_base.h" #include "irr_v3d.h" -class ObjectProperties; -class ToolCapabilities; +struct ObjectProperties; +struct ToolCapabilities; class ScriptApiEntity : virtual public ScriptApiBase |