mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2024-11-23 19:42:51 +01:00
14 lines
351 B
C#
14 lines
351 B
C#
using Phantom.Common.Data.Java;
|
|
|
|
namespace Phantom.Agent.Minecraft.Java;
|
|
|
|
public sealed class JavaRuntimeExecutable {
|
|
internal string ExecutablePath { get; }
|
|
internal JavaRuntime Runtime { get; }
|
|
|
|
internal JavaRuntimeExecutable(string executablePath, JavaRuntime runtime) {
|
|
this.ExecutablePath = executablePath;
|
|
this.Runtime = runtime;
|
|
}
|
|
}
|