Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
PowerGrid.hxx File Reference
#include "Point.hxx"
#include "../engine/GameObjects/MapGrid.hxx"
#include <vector>
+ Include dependency graph for PowerGrid.hxx:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  PowerNode
 
class  PowerGrid
 

Functions

void mergePowerGrids (PowerGrid &mainGrid, PowerGrid &toBeMerged)
 

Function Documentation

◆ mergePowerGrids()

void mergePowerGrids ( PowerGrid mainGrid,
PowerGrid toBeMerged 
)

Definition at line 7 of file PowerGrid.cxx.

8 {
9  mainGrid.m_gridNodes.insert(mainGrid.end(), toBeMerged.begin(), toBeMerged.end());
10 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:
MapGrid::begin
auto begin()
Definition: MapGrid.hxx:46
MapGrid::end
auto end()
Definition: MapGrid.hxx:47
MapGrid::m_gridNodes
std::vector< T > m_gridNodes
Definition: MapGrid.hxx:50