RuneHive-Tarnish
Neural OSRS Enhancement Framework
Loading...
Searching...
No Matches
SkillRequirement.java
1package com.osroyale.game.world.items;
2
35
36public class SkillRequirement implements Requirable {
37
41 private final int level;
42
46 private final int skill;
47
57 public SkillRequirement(int level, int skill) {
58 this.level = level;
59 this.skill = skill;
60 }
61
65 public int getLevel() {
66 return level;
67 }
68
72 public int getSkill() {
73 return skill;
74 }
75
76}