mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-09-23 22:25:25 -04:00
16 lines
260 B
C
16 lines
260 B
C
#pragma once
|
|
|
|
#include <QByteArray>
|
|
#include <QHash>
|
|
#include <QString>
|
|
|
|
#include "Result.h"
|
|
|
|
struct ApplicationMessage {
|
|
QString command;
|
|
QHash<QString, QString> args;
|
|
|
|
QByteArray serialize() const;
|
|
Result<> parse(const QByteArray& input);
|
|
};
|