mirror of
https://github.com/MineLittlePony/MineLittlePony.git
synced 2024-11-29 23:48:00 +01:00
21 lines
445 B
Java
21 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;
|
||
|
}
|
||
|
}
|