Update to water shot with addict code

This commit is contained in:
Willem Cazander 2022-02-23 17:11:05 +01:00
parent a05493c56c
commit 0c906b701f
8 changed files with 142 additions and 43 deletions

View file

@ -0,0 +1,26 @@
package love.distributedrebirth.warpme.hash;
import java.util.ArrayList;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WaterShot {
private List<WaterShotHash> shotHashes = new ArrayList<>();
public List<WaterShotHash> getShotHashes() {
return shotHashes;
}
public void setShotHashes(List<WaterShotHash> shotHashes) {
for (WaterShotHash hash:shotHashes) {
addShotHash(hash);
}
}
public void addShotHash(WaterShotHash shotHash) {
this.shotHashes.add(shotHash);
}
}