mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-04-16 23:36:54 -04:00
14 lines
266 B
C
14 lines
266 B
C
#pragma once
|
|
|
|
#include <QString>
|
|
|
|
#include "Library.h"
|
|
|
|
struct Agent {
|
|
/// The library pointing to the jar this Java agent is contained within
|
|
LibraryPtr library;
|
|
|
|
/// The argument to the Java agent, passed after an = if present
|
|
QString argument;
|
|
};
|