aboutsummaryrefslogtreecommitdiff
path: root/Core/GameInfo/gameinfostructure.h
diff options
context:
space:
mode:
authorDark1-dev <shansarkar272@gmail.com>2023-03-01 21:33:55 +0600
committerGitHub <noreply@github.com>2023-03-01 21:33:55 +0600
commit3c7253d6cdc23aac36208fa87dc6571c7cb7c5ff (patch)
tree8b5f9425bbfc4fdd5a29155aec38893b77481359 /Core/GameInfo/gameinfostructure.h
parentde57bc38217c09a0ae4a143f631896652368ecc3 (diff)
downloadMasterserver-Qt5-3c7253d6cdc23aac36208fa87dc6571c7cb7c5ff.tar.gz
Masterserver-Qt5-3c7253d6cdc23aac36208fa87dc6571c7cb7c5ff.zip
Add files via upload
Diffstat (limited to 'Core/GameInfo/gameinfostructure.h')
-rw-r--r--Core/GameInfo/gameinfostructure.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/Core/GameInfo/gameinfostructure.h b/Core/GameInfo/gameinfostructure.h
new file mode 100644
index 0000000..b73e9ef
--- /dev/null
+++ b/Core/GameInfo/gameinfostructure.h
@@ -0,0 +1,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