minecraft-launcher/app/minecraft/Agent.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
266 B
C
Raw Permalink Normal View History

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