mirror of
https://github.com/Sollace/Unicopia.git
synced 2024-11-28 15:38:00 +01:00
9 lines
216 B
Java
9 lines
216 B
Java
|
package com.minelittlepony.unicopia.item;
|
||
|
|
||
|
public class MuffinItem extends HeavyProjectileItem {
|
||
|
|
||
|
public MuffinItem(Settings settings, float projectileDamage) {
|
||
|
super(settings, projectileDamage);
|
||
|
}
|
||
|
}
|