Mineplex/GOD DAMN COSMETICS/thank/ThankData.java
Daniel Waggner 38a20f98c2 Removed Files
These two directories contain code that was removed from the src and dependencies of the compiled files. They were removed due to being either a. unnecessary or b. a royal pain in my booty.
2021-05-23 18:13:37 -07:00

25 lines
340 B
Java

package mineplex.core.thank;
/**
* @author Shaun Bennett
*/
public class ThankData
{
private int _thankToClaim;
public ThankData(int thankToClaim)
{
_thankToClaim = thankToClaim;
}
public int getThankToClaim()
{
return _thankToClaim;
}
public void setThankToClaim(int thankToClaim)
{
_thankToClaim = thankToClaim;
}
}