porymap/heallocation.cpp
2018-09-11 20:37:36 -04:00

19 lines
363 B
C++

#include "heallocation.h"
//HealLocation::HealLocation() {}
HealLocation::HealLocation(QString map, int i, size_t x0, size_t y0) {
name = map;
index = i;
x = x0;
y = y0;
}
QDebug operator<<(QDebug debug, const HealLocation &hl) {
debug << "HealLocation_" + hl.name << "(" << hl.x << ',' << hl.y << ")";
return debug;
}