Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Internal/treestructure.h')
-rw-r--r--Source/Internal/treestructure.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/Source/Internal/treestructure.h b/Source/Internal/treestructure.h
index 4df8b378..863b1e92 100644
--- a/Source/Internal/treestructure.h
+++ b/Source/Internal/treestructure.h
@@ -1,7 +1,7 @@
//-----------------------------------------------------------------------------
// Name: treestructure.h
// Developer: Wolfire Games LLC
-// Description:
+// Description:
// License: Read below
//-----------------------------------------------------------------------------
//
@@ -25,12 +25,12 @@
#include <vector>
namespace TreeStructure {
- void GetBalancedTree(std::vector<int> &temp_parent);
- int GetTotalNumChildren(int parent, const std::vector<int> &parents);
- int GetDepth(int which, const std::vector<int> &parents);
- int GetNumChildren(int parent, const std::vector<int> &parents);
- std::vector<int> GetChildren(int parent, const std::vector<int> &parents);
- int GetNumConnections(int parent, const std::vector<int> &parents);
- std::vector<int> FindTreePath( int a, int b, const std::vector<int> &parents );
- std::vector<int> GetChildrenRecursive( int parent, const std::vector<int> &parents );
-}
+void GetBalancedTree(std::vector<int> &temp_parent);
+int GetTotalNumChildren(int parent, const std::vector<int> &parents);
+int GetDepth(int which, const std::vector<int> &parents);
+int GetNumChildren(int parent, const std::vector<int> &parents);
+std::vector<int> GetChildren(int parent, const std::vector<int> &parents);
+int GetNumConnections(int parent, const std::vector<int> &parents);
+std::vector<int> FindTreePath(int a, int b, const std::vector<int> &parents);
+std::vector<int> GetChildrenRecursive(int parent, const std::vector<int> &parents);
+} // namespace TreeStructure