From 0c5f58036531e85ab4c0c7d9ad75466c74aaafe7 Mon Sep 17 00:00:00 2001 From: Perttu Ahola Date: Tue, 24 May 2011 20:05:30 +0300 Subject: a work-in-progress map modified callback interface (committing because i want to merge the fence stuff) --- src/environment.h | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/environment.h') diff --git a/src/environment.h b/src/environment.h index 8993b8e87..ac290f932 100644 --- a/src/environment.h +++ b/src/environment.h @@ -116,13 +116,19 @@ private: Active block modifier interface */ +class ServerEnvironment; + class ActiveBlockModifier { public: ActiveBlockModifier(){}; virtual ~ActiveBlockModifier(){}; - //TODO - //virtual void + + virtual u32 getTriggerContentCount(){ return 1;} + virtual u8 getTriggerContent(u32 i) = 0; + virtual float getActiveInterval() = 0; + virtual u32 getActiveChance() = 0; + virtual void triggerEvent(ServerEnvironment *env, v3s16 p) = 0; }; /* -- cgit v1.2.3