diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-08-02 19:18:30 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2011-08-05 08:45:15 +0200 |
commit | f79069f5b3995a8b8f13771afc3f853a0ec97dcb (patch) | |
tree | 538e33dfd68983199a147c3a917f4ed59aa8358e /src | |
parent | f5e0ba266e9cd6dde8f809ef8021eba8c4d1e81e (diff) | |
download | minetest-f79069f5b3995a8b8f13771afc3f853a0ec97dcb.tar.gz minetest-f79069f5b3995a8b8f13771afc3f853a0ec97dcb.tar.bz2 minetest-f79069f5b3995a8b8f13771afc3f853a0ec97dcb.zip |
MapNode is a struct, not a class
Diffstat (limited to 'src')
-rw-r--r-- | src/mapnode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapnode.h b/src/mapnode.h index 484ad4e19..389fa1c9c 100644 --- a/src/mapnode.h +++ b/src/mapnode.h @@ -96,7 +96,7 @@ enum LiquidType LIQUID_SOURCE }; -class MapNode; +struct MapNode; class NodeMetadata; struct ContentFeatures |