gdxapp4d/lib-warpme/src/main/love/distributedrebirth/warpme/sea/WaterSeaChain.java

39 lines
650 B
Java
Raw Normal View History

2022-02-21 18:46:02 +01:00
package love.distributedrebirth.warpme.sea;
2022-02-17 19:57:57 +01:00
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
2022-02-21 18:46:02 +01:00
public class WaterSeaChain {
2022-02-17 19:57:57 +01:00
private String key;
private String tag;
2022-02-21 18:46:02 +01:00
public WaterSeaChain() {
2022-02-17 19:57:57 +01:00
}
2022-02-23 20:45:23 +01:00
public WaterSeaChain(String key) {
setKey(key);
2022-02-17 19:57:57 +01:00
}
2022-02-23 20:45:23 +01:00
public WaterSeaChain(String key, String tag) {
setKey(key);
setTag(tag);
2022-02-17 19:57:57 +01:00
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getTag() {
return tag;
}
public void setTag(String tag) {
this.tag = tag;
}
}