summaryrefslogtreecommitdiffstats
path: root/source/cPlugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/cPlugin.h')
-rw-r--r--source/cPlugin.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/cPlugin.h b/source/cPlugin.h
index 3b29b604f..737c0c382 100644
--- a/source/cPlugin.h
+++ b/source/cPlugin.h
@@ -14,6 +14,7 @@ class cItem;
class cEntity;
class cPawn;
class cWorld;
+class cLuaChunk;
struct TakeDamageInfo;
@@ -49,6 +50,7 @@ public:
virtual void OnTakeDamage( cPawn* a_Pawn, TakeDamageInfo* a_TakeDamageInfo ) { (void)a_Pawn; (void)a_TakeDamageInfo; }
virtual bool OnKilled( cPawn* a_Killed, cEntity* a_Killer ) { (void)a_Killed; (void)a_Killer; return false; }
virtual void OnChunkGenerated(cWorld * a_World, int a_ChunkX, int a_ChunkZ) {}
+ virtual bool OnChunkGenerating( int a_ChunkX, int a_ChunkZ, cLuaChunk * a_pLuaChunk ) { return false; }
// Accessors
const char* GetName() const { return m_Name.c_str(); }