aboutsummaryrefslogtreecommitdiff
path: root/src/environment.h
diff options
context:
space:
mode:
authorPerttu Ahola <celeron55@gmail.com>2011-05-22 23:55:02 +0300
committerPerttu Ahola <celeron55@gmail.com>2011-05-22 23:55:02 +0300
commit4a6b9a6ac1b07239474bce8d3ebf772ce75e862e (patch)
tree4d29d47ce8840b44efe044db0050099b92996475 /src/environment.h
parente0329a3caee863a2302748f710401bfc0dfa78db (diff)
downloadhax-minetest-server-4a6b9a6ac1b07239474bce8d3ebf772ce75e862e.tar.gz
hax-minetest-server-4a6b9a6ac1b07239474bce8d3ebf772ce75e862e.zip
Some work-in-progress stuff and many comment updates
Diffstat (limited to 'src/environment.h')
-rw-r--r--src/environment.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/environment.h b/src/environment.h
index e32b15dbb..8993b8e87 100644
--- a/src/environment.h
+++ b/src/environment.h
@@ -113,6 +113,19 @@ private:
};
/*
+ Active block modifier interface
+*/
+
+class ActiveBlockModifier
+{
+public:
+ ActiveBlockModifier(){};
+ virtual ~ActiveBlockModifier(){};
+ //TODO
+ //virtual void
+};
+
+/*
The server-side environment.
This is not thread-safe. Server uses an environment mutex.