forked from teamnwah/openmw-tes3coop
15 lines
249 B
C++
15 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
|