summaryrefslogtreecommitdiff
path: root/src/mapchunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapchunk.h')
-rw-r--r--src/mapchunk.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mapchunk.h b/src/mapchunk.h
index 1819fa13e..9860abad0 100644
--- a/src/mapchunk.h
+++ b/src/mapchunk.h
@@ -36,7 +36,8 @@ class MapChunk
{
public:
MapChunk():
- m_generation_level(GENERATED_NOT)
+ m_generation_level(GENERATED_NOT),
+ m_modified(true)
{
}
@@ -58,8 +59,12 @@ public:
is.read((char*)&m_generation_level, 1);
}
+ bool isModified(){ return m_modified; }
+ void setModified(bool modified){ m_modified = modified; }
+
private:
u8 m_generation_level;
+ bool m_modified;
};
#endif