summaryrefslogtreecommitdiffstats
path: root/Tools/GrownBiomeGenVisualiser/Globals.h
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/GrownBiomeGenVisualiser/Globals.h')
-rw-r--r--Tools/GrownBiomeGenVisualiser/Globals.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/Tools/GrownBiomeGenVisualiser/Globals.h b/Tools/GrownBiomeGenVisualiser/Globals.h
index 11adc2f53..a920294cc 100644
--- a/Tools/GrownBiomeGenVisualiser/Globals.h
+++ b/Tools/GrownBiomeGenVisualiser/Globals.h
@@ -70,6 +70,14 @@
+#ifndef TOLUA_TEMPLATE_BIND
+ #define TOLUA_TEMPLATE_BIND(x)
+#endif
+
+
+
+
+
// Integral types with predefined sizes:
typedef long long Int64;
typedef int Int32;
@@ -226,6 +234,20 @@ public:
} ;
+
+
+
+/** Clamp X to the specified range. */
+template <typename T>
+T Clamp(T a_Value, T a_Min, T a_Max)
+{
+ return (a_Value < a_Min) ? a_Min : ((a_Value > a_Max) ? a_Max : a_Value);
+}
+
+
+
+
+
#include "BiomeDef.h"