Skip to content

Commit

Permalink
update for latest GHS
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurkars committed Jun 4, 2024
1 parent e91884a commit e9079fa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<revision>0.98.0</revision>
<revision>0.99.0</revision>
</properties>

<parent>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public class GameAttackModifierDeckModel {
private boolean active = true;
private Integer lastVisible;
private String state;
private Boolean bb;

/**
* Gets the current.
Expand Down Expand Up @@ -131,4 +132,22 @@ public void setState(String state) {
this.state = state;
}

/**
* Gets the bb.
*
* @return the bb
*/
public Boolean getBb() {
return bb;
}

/**
* Sets the bb.
*
* @param bb the new bb
*/
public void setState(Boolean bb) {
this.bb = bb;
}

}

0 comments on commit e9079fa

Please sign in to comment.