PrismLauncher/launcher/minecraft/Agent.h
TheKodeToad 248eb13ab9
Agent: Simplify and avoid unnecessary shared_ptr
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
2026-02-06 11:17:12 +00:00

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;
};