mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-30 18:36:58 +03:00
Used like this: ``` ./MultiMC --launch 1.17.1 --profile MultiMCTest --server mc.hypixel.net ```
13 lines
225 B
C
13 lines
225 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
#include <QMap>
|
|
#include <QByteArray>
|
|
|
|
struct LauncherMessage {
|
|
QString command;
|
|
QMap<QString, QString> args;
|
|
|
|
QByteArray serialize();
|
|
void parse(const QByteArray & input);
|
|
};
|