mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 22:24:26 +02:00
14 lines
229 B
C
14 lines
229 B
C
#pragma once
|
|
|
|
#include <QByteArray>
|
|
#include <QHash>
|
|
#include <QString>
|
|
|
|
struct ApplicationMessage {
|
|
QString command;
|
|
QHash<QString, QString> args;
|
|
|
|
QByteArray serialize();
|
|
void parse(const QByteArray& input);
|
|
};
|