1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-17 17:32:36 +01:00
Files
mcMMO/sponge/src/main/java/com/gmail/nossr50/SpongePlugin.java
Gabriel Harris-Rouquette e80c183894 Cleanup and fix some of the gradle scripts. Add shadows to retain dependencies.
Signed-off-by: Gabriel Harris-Rouquette <gabizou@me.com>
2019-02-07 17:10:08 -08:00

24 lines
524 B
Java

package com.gmail.nossr50;
import org.spongepowered.api.event.Listener;
import org.spongepowered.api.event.game.state.GamePreInitializationEvent;
import org.spongepowered.api.plugin.Plugin;
@Plugin(
id = "mcmmo",
authors = {"nossr50", "gabizou", "bloodmage"},
version = "2.2.0-SNAPSHOT",
name = "mcMMO",
url = "https://www.mcmmo.org/",
description = "mcMMO plugin for Sponge"
)
public class SpongePlugin {
@Listener
public void onGamePreInit(GamePreInitializationEvent event) {
}
}