Example usage for com.badlogic.gdx Files interface-usage

List of usage examples for com.badlogic.gdx Files interface-usage

Introduction

In this page you can find the example usage for com.badlogic.gdx Files interface-usage.

Usage

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

/**
 * Implementation of {@link Files} for {@link com.badlogic.gdx.backends.headless.HeadlessFileHandle}s.
 * <p>
 * Overrides {@link HeadlessFiles#localPath} with the given localPath and returns internal files as local files,
 * resulting in the ability to configure the location of the assets.
 *

From source file es.eucm.ead.editor.exporter.ExporterFiles.java

/**
 * Literally a copy of libgdx's LwjglFiles. Thanks to its authors:
 * 
 * @author mzechner
 * @author Nathan Sweet
 * 

From source file es.eucm.ead.engine.mock.MockFiles.java

public class MockFiles implements Files {
    static public final String externalPath = System.getProperty("user.home") + "/";

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

From source file net.pevnostgames.lwjglserver.ServerFiles.java

public class ServerFiles implements Files {
    static public final String externalPath = System.getProperty("user.home") + "/";

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