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