mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-05 02:52:20 -04:00
16 lines
249 B
C++
16 lines
249 B
C++
//
|
|
// Created by koncord on 07.05.17.
|
|
//
|
|
|
|
#ifndef OPENMW_TYPES_HPP
|
|
#define OPENMW_TYPES_HPP
|
|
|
|
#include <QPair>
|
|
#include <QString>
|
|
|
|
typedef QPair <QString, unsigned short> AddrPair;
|
|
typedef QPair <int, AddrPair> ServerRow;
|
|
|
|
|
|
#endif //OPENMW_TYPES_HPP
|