mirror of
https://github.com/huderlem/porymap.git
synced 2026-06-23 08:09:50 -05:00
16 lines
335 B
C++
16 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;
|
|
}
|