RuneHive-Game
Loading...
Searching...
No Matches
DailySlayerTaskSkip.java
Go to the documentation of this file.
1package com.runehive.content.dailyeffect.impl;
2
3import com.runehive.content.dailyeffect.DailyEffect;
4import com.runehive.game.world.entity.mob.player.Player;
5
6public class DailySlayerTaskSkip extends DailyEffect {
7
8 @Override
9 public int maxUses(Player player) {
10 return 2;
11 }
12}
This class represents a character controlled by a player.
Definition Player.java:125