porymap/heallocation.h

24 lines
386 B
C
Raw Normal View History

2018-09-12 01:37:36 +01:00
#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