mirror of
https://github.com/BentoBoxWorld/Challenges.git
synced 2024-11-24 19:45:14 +01:00
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:
parent
d5f19310c8
commit
016deec34c
@ -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
Loading…
Reference in New Issue
Block a user