aboutsummaryrefslogtreecommitdiff
path: root/backend/LocationFactory.cpp
blob: 6e0b6b81a24c8ce85db3b0e8048688679f9b50fc (plain)
1
2
3
4
5
6
#include "LocationFactory.h"

Location * LocationFactory::create_location(const char * name, const char * description) {
	return new Location(name, description);
}