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/common | |
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/common')
-rw-r--r-- | src/script/common/c_content.h | 22 |
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; |