24 lines
386 B
C
24 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
|