porymap/include/core/mapconnection.h
2020-10-24 15:51:10 -04:00

23 lines
422 B
C++

#pragma once
#ifndef MAPCONNECTION_H
#define MAPCONNECTION_H
#include <QString>
#include <QHash>
class MapConnection {
public:
QString direction;
QString offset;
QString map_name;
};
inline bool operator==(const MapConnection &c1, const MapConnection &c2) {
return c1.map_name == c2.map_name;
}
inline uint qHash(const MapConnection &key) {
return qHash(key.map_name);
}
#endif // MAPCONNECTION_H