Mineplex/GOD DAMN COSMETICS/treasure/animation/animations/reward/CommonRewardAnimation.java
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

37 lines
733 B
Java

package mineplex.core.treasure.animation.animations.reward;
import org.bukkit.Location;
import mineplex.core.reward.RewardData;
import mineplex.core.treasure.TreasureLocation;
import mineplex.core.treasure.animation.TreasureRewardAnimation;
import mineplex.core.treasure.types.Treasure;
public class CommonRewardAnimation extends TreasureRewardAnimation
{
public CommonRewardAnimation(Treasure treasure, TreasureLocation treasureLocation, Location location, RewardData rewardData)
{
super(treasure, treasureLocation, location, rewardData);
}
@Override
protected void onStart()
{
createHologramItemPair();
setRunning(false);
}
@Override
public void onTick()
{
}
@Override
protected void onFinish()
{
}
}