porymap/heallocation.cpp
Marcus Huderle 0b8c71119d Fix warnings
2018-09-14 18:37:36 -05:00

15 lines
335 B
C++

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