api: proper interface

This commit is contained in:
Zeruth
2019-07-25 21:17:35 -04:00
parent 80ed5c4327
commit f3a9fbc9fb

View File

@@ -26,9 +26,9 @@ package net.runelite.api;
public interface Item
{
int id = -1;
int quantity = -1;
int getId();
int getQuantity();
void setId(int id);
void setQuantity(int quantity);
}