Skip to content

Commit

Permalink
Create ChallengesEditGUI class that will allow to edit challenges via…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
BONNe committed Jan 16, 2019
1 parent d5f1931 commit 016deec
Show file tree
Hide file tree
Showing 2 changed files with 1,114 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 016deec

Please sign in to comment.