Create ChallengesEditGUI class that will allow to edit challenges via ingame GUI.

This GUI currently does not have ability to change values. It only contains skeleton for each option, that user should be able to change.
Add new parameters to Challenges class.
This commit is contained in:
BONNe1704 2019-01-16 19:25:01 +02:00
parent d5f19310c8
commit 016deec34c
2 changed files with 1114 additions and 0 deletions

View File

@ -25,6 +25,43 @@ public class Challenges implements DataObject {
public Challenges() {}
public boolean isRemoveEntities()
{
return false;
}
public void setRemoveEntities(boolean b)
{
}
public boolean isRemoveBlocks()
{
return false;
}
public void setRemoveBlocks(boolean b)
{
}
public boolean isTakeExperience()
{
return false;
}
public void setTakeExperience(boolean b)
{
}
public enum ChallengeType {
/**
* This challenge only shows and icon in the GUI and doesn't do anything.

File diff suppressed because it is too large Load Diff