All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.stormbit.packer.PackerOutput Maven / Gradle / Ivy

The newest version!
package com.github.stormbit.packer;

import java.io.File;

class PackerOutput
{
    final File executableFolder;
    final File resourcesFolder;
    
    PackerOutput(final File executableFolder, final File resourcesFolder) {
        this.executableFolder = executableFolder;
        this.resourcesFolder = resourcesFolder;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy