summaryrefslogtreecommitdiff
path: root/src/script/common
diff options
context:
space:
mode:
authorKahrl <kahrl@gmx.net>2013-06-06 22:57:38 +0200
committerKahrl <kahrl@gmx.net>2013-06-06 22:57:38 +0200
commit773471750dbea73431934ac3736c23564da986b5 (patch)
tree612c520d341f0672a11f69d0118ac51ba368492a /src/script/common
parent6b3e553dd5ca7f31a5e9fc68a3b7f3b59b85e511 (diff)
downloadminetest-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/common')
-rw-r--r--src/script/common/c_content.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/script/common/c_content.h b/src/script/common/c_content.h
index 251a72e27..58be7118c 100644
--- a/src/script/common/c_content.h
+++ b/src/script/common/c_content.h
@@ -39,19 +39,19 @@ extern "C" {
#include "irrlichttypes_bloated.h"
#include "util/string.h"
-class MapNode;
+struct MapNode;
class INodeDefManager;
-class PointedThing;
-class ItemStack;
-class ItemDefinition;
-class ToolCapabilities;
-class ObjectProperties;
-class SimpleSoundSpec;
-class ServerSoundParams;
+struct PointedThing;
+struct ItemStack;
+struct ItemDefinition;
+struct ToolCapabilities;
+struct ObjectProperties;
+struct SimpleSoundSpec;
+struct ServerSoundParams;
class Inventory;
-class NodeBox;
-class ContentFeatures;
-class TileDef;
+struct NodeBox;
+struct ContentFeatures;
+struct TileDef;
class Server;
struct DigParams;
struct HitParams;