forked from mirror/openmw-tes3mp
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
|