Skip to content
Snippets Groups Projects
Utils.java 219 B
Newer Older
package nl.utwente.mod4.pokemon;

import java.nio.file.Path;

public class Utils {

    public static String getAbsolutePathToResources() {
        return Utils.class.getClassLoader().getResource("").getPath();
    }
}