gdxapp4d/lib-warpme/src/main/love/distributedrebirth/warpme/hash/WaterShotHash.java

35 lines
606 B
Java
Raw Normal View History

2022-02-21 18:19:25 +01:00
package love.distributedrebirth.warpme.hash;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
2022-02-23 17:11:05 +01:00
public class WaterShotHash {
2022-02-21 18:19:25 +01:00
private String file;
2022-02-23 17:11:05 +01:00
private String hex;
public WaterShotHash() {
}
public WaterShotHash(String file, String hex) {
setFile(file);
setHex(hex);
}
2022-02-21 18:19:25 +01:00
public String getFile() {
return file;
}
public void setFile(String file) {
this.file = file;
}
2022-02-23 17:11:05 +01:00
public String getHex() {
return hex;
2022-02-21 18:19:25 +01:00
}
2022-02-23 17:11:05 +01:00
public void setHex(String hex) {
this.hex = hex;
2022-02-21 18:19:25 +01:00
}
}