summaryrefslogtreecommitdiffstats
path: root/src/launcher/profile.rs
blob: 835d912a3de5ce8ee39b9abcded60645bf980e64 (plain) (blame)
1
2
3
4
5
6
7
8
use super::instance::Instance;

struct Profile<'l> {
    name: String,
    version_id: String,
    java_runtime: Option<String>,
    instance: &'l Instance
}