001package com.ericlam.mc.groovier;
002
003import java.io.File;
004import java.util.logging.Logger;
005
006/**
007 * for multi platform (bungee and spigot)
008 */
009public interface ScriptPlugin {
010
011    File getPluginFolder();
012
013    void copyResources();
014
015    Logger getLogger();
016
017    void runSyncTask(Runnable runnable);
018
019    void runAsyncTask(Runnable runnable);
020
021}