1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
#ifndef STRUCTGAMEINFO_H #define STRUCTGAMEINFO_H #include <QString> struct GameInfo { // gamename is the unique identifier QString gamename; // 6-byte GameSpy identifier QString cipher; // game label QString label; // default port unsigned short port = 0; // known protocol QString protocol; }; #endif // STRUCTGAMEINFO_H