-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #620 from charlestian23/puzzle_editor-short_truth_…
…table Fixed the blank element to be categorized as a placeable element
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
src/main/java/edu/rpi/legup/puzzle/shorttruthtable/elements/UnknownElement.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package edu.rpi.legup.puzzle.shorttruthtable.elements; | ||
|
||
import edu.rpi.legup.model.elements.NonPlaceableElement; | ||
import edu.rpi.legup.model.elements.PlaceableElement; | ||
|
||
public class UnknownElement extends NonPlaceableElement { | ||
public class UnknownElement extends PlaceableElement { | ||
public UnknownElement() { | ||
super("STTT-UNPL-0003", "Unknown Element", "A blank tile", "edu/rpi/legup/images/shorttruthtable/tiles/UnknownTile.png"); | ||
super("STTT-PLAC-0003", "Unknown Element", "A blank tile", "edu/rpi/legup/images/shorttruthtable/tiles/UnknownTile.png"); | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...va/edu/rpi/legup/puzzle/shorttruthtable/elements/shorttruthtable_elements_reference_sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
STTT-UNPL-0001 : ArgumentElement | ||
STTT-UNPL-0002 : ConditionalBiconditionalElement | ||
STTT-UNPL-0003 : UnknownElement | ||
|
||
STTT-PLAC-0001 : GreenElement | ||
STTT-PLAC-0002 : RedElement | ||
STTT-PLAC-0002 : RedElement | ||
STTT-PLAC-0003 : UnknownElement |