1
0

Thread safe cMap manager

This commit is contained in:
andrew
2014-02-20 16:38:37 +02:00
parent 83d3a2eedf
commit f201f4f176
7 changed files with 275 additions and 17 deletions

View File

@@ -51,15 +51,6 @@ const int NEST_SIZE_GRAVEL = 32;
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);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// cStructGenTrees: