aboutsummaryrefslogtreecommitdiff
path: root/CyclePathfindingMethodCommand.cpp
blob: 562a1ab857fb6aa73c6dc0f16bc1ad97de251e13 (plain)
1
2
3
4
5
6
7
8
9
#include "CyclePathfindingMethodCommand.h"
#include "Museum.h"

CyclePathfindingMethodCommand::CyclePathfindingMethodCommand(Museum & m) : museum(m) { }

void CyclePathfindingMethodCommand::execute() {
	this->museum.pathfinding.cycle_solver();
}