#ifndef HEALLOCATION_H #define HEALLOCATION_H #include #include class HealLocation { public: HealLocation()=default; HealLocation(QString, int, uint16_t, uint16_t); friend QDebug operator<<(QDebug debug, const HealLocation &hl); public: //QString group; QString name; int index; uint16_t x; uint16_t y; }; #endif // HEALLOCATION_H