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

23 lines
386 B
C++

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