Example usage for com.badlogic.gdx.backends.headless HeadlessFileHandle HeadlessFileHandle

List of usage examples for com.badlogic.gdx.backends.headless HeadlessFileHandle HeadlessFileHandle

Introduction

In this page you can find the example usage for com.badlogic.gdx.backends.headless HeadlessFileHandle HeadlessFileHandle.

Prototype

public HeadlessFileHandle(File file, FileType type) 

Source Link

Usage

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle getFileHandle(String fileName, FileType type) {
    return new HeadlessFileHandle(fileName, type);
}

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle classpath(String path) {
    return new HeadlessFileHandle(path, FileType.Classpath);
}

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle internal(String path) {
    return new HeadlessFileHandle(path, FileType.Local);
}

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle external(String path) {
    return new HeadlessFileHandle(path, FileType.External);
}

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle absolute(String path) {
    return new HeadlessFileHandle(path, FileType.Absolute);
}

From source file:de.cubicvoxel.openspacebox.realmdesigner.util.ConfigurableFiles.java

License:Open Source License

@Override
public FileHandle local(String path) {
    return new HeadlessFileHandle(path, FileType.Local);
}