aboutsummaryrefslogtreecommitdiff
path: root/TimeTravelCommand.cpp
blob: 34468c06dcb6cf2ba52ec145fb8093d8cb1b4a70 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "TimeTravelCommand.h"
#include "Museum.h"

void TimeTravelCommand::forwards() {
	this->get_museum().skip_forward();
}

void TimeTravelCommand::backwards() {
	this->get_museum().skip_backward();
}