project: add missing features (#2951)

* client: add stuff

client: add stuff

* mixins

* Update XpDropEvent.java

* Update EntityHiderBridgeMixin.java

* would help if I uploaded the right files

would help if I uploaded the right files
This commit is contained in:
Kyle
2021-02-26 12:05:23 +00:00
committed by GitHub
parent d04ae86168
commit d3162944fa
5 changed files with 252 additions and 25 deletions

View File

@@ -0,0 +1,11 @@
package com.openosrs.client.game;
import lombok.Data;
import net.runelite.api.Skill;
@Data
public class XpDropEvent
{
private Skill skill;
private int exp;
}