Added warp chain
This commit is contained in:
parent
8d275b982c
commit
665dee9d0f
|
@ -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 WaterDrugs {
|
||||
|
||||
private List<WaterFileHash> fileHashes = new ArrayList<>();
|
||||
|
||||
public List<WaterFileHash> getFileHashes() {
|
||||
return fileHashes;
|
||||
}
|
||||
|
||||
public void setFileHashes(List<WaterFileHash> fileHashes) {
|
||||
for (WaterFileHash hash:fileHashes) {
|
||||
addFileHash(hash);
|
||||
}
|
||||
}
|
||||
|
||||
public void addFileHash(WaterFileHash fileHash) {
|
||||
this.fileHashes.add(fileHash);
|
||||
}
|
||||
}
|
|
@ -0,0 +1,26 @@
|
|||
package love.distributedrebirth.warpme.hash;
|
||||
|
||||
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
|
||||
|
||||
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
|
||||
public class WaterFileHash {
|
||||
|
||||
private String file;
|
||||
private String hash;
|
||||
|
||||
public String getFile() {
|
||||
return file;
|
||||
}
|
||||
|
||||
public void setFile(String file) {
|
||||
this.file = file;
|
||||
}
|
||||
|
||||
public String getHash() {
|
||||
return hash;
|
||||
}
|
||||
|
||||
public void setHash(String hash) {
|
||||
this.hash = hash;
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue