mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-12-02 00:37:59 +01:00
20 lines
445 B
Java
20 lines
445 B
Java
package com.minelittlepony.minelp;
|
|
|
|
import com.voxelmodpack.common.VoxelCommonLiteMod;
|
|
|
|
public class LiteModMineLittlePony extends VoxelCommonLiteMod {
|
|
|
|
public LiteModMineLittlePony() {
|
|
super("com.minelittlepony.minelp.MineLittlePony");
|
|
}
|
|
|
|
@Override
|
|
public String getVersion() {
|
|
return MineLittlePony.MOD_VERSION;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return MineLittlePony.MOD_NAME;
|
|
}
|
|
}
|