1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-21 20:25:54 +00:00
Slimefun4/src/main/java/me/mrCookieSlime/Slimefun/Objects/Research.java

15 lines
396 B
Java
Raw Normal View History

2016-04-14 16:24:03 +00:00
package me.mrCookieSlime.Slimefun.Objects;
import org.bukkit.NamespacedKey;
2016-04-14 16:24:03 +00:00
2017-06-23 11:06:08 +00:00
/**
2020-05-08 15:55:48 +00:00
* @deprecated Moved to io.github.thebusybiscuit.slimefun4.core.researching.Research
2020-03-07 10:35:29 +00:00
*
2017-06-23 11:06:08 +00:00
*/
2020-05-08 15:55:48 +00:00
@Deprecated
public class Research extends io.github.thebusybiscuit.slimefun4.core.researching.Research {
2020-05-08 15:55:48 +00:00
public Research(NamespacedKey key, int id, String name, int cost) {
super(key, id, name, cost);
}
2020-04-25 21:13:00 +00:00
}