aboutsummaryrefslogtreecommitdiff
path: root/Core/GameInfo/gameinfostructure.h
blob: b73e9ef25c4e54665aed6dcebd2fbfe2714ddbc1 (plain)
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