empty warp core object tree

This commit is contained in:
Willem Cazander 2022-02-03 13:22:05 +01:00
parent 44824472f4
commit 229da4b4ca
5 changed files with 122 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package love.distributedrebirth.numberxd.base2t.part.warp;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class TOSWarpCore {
}

View file

@ -0,0 +1,5 @@
package love.distributedrebirth.numberxd.base2t.part.warp;
public class TOSWarpCoreDriver {
}

View file

@ -0,0 +1,40 @@
package love.distributedrebirth.numberxd.base2t.part.warp;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WarpCipher {
String cipherName;
String cipherDescription;
List<WarpCipherHeart> cipherHearts;
public WarpCipher() {
}
public String getCipherName() {
return cipherName;
}
public void setCipherName(String cipherName) {
this.cipherName = cipherName;
}
public String getCipherDescription() {
return cipherDescription;
}
public void setCipherDescription(String cipherDescription) {
this.cipherDescription = cipherDescription;
}
public List<WarpCipherHeart> getCipherHearts() {
return cipherHearts;
}
public void setCipherHearts(List<WarpCipherHeart> cipherHearts) {
this.cipherHearts = cipherHearts;
}
}

View file

@ -0,0 +1,31 @@
package love.distributedrebirth.numberxd.base2t.part.warp;
import java.util.List;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WarpCipherHeart {
private String partKey;
private List<WarpCipherHeartCore> heartCores;
public WarpCipherHeart() {
}
public String getPartKey() {
return partKey;
}
public void setPartKey(String partKey) {
this.partKey = partKey;
}
public List<WarpCipherHeartCore> getHeartCores() {
return heartCores;
}
public void setHeartCores(List<WarpCipherHeartCore> heartCores) {
this.heartCores = heartCores;
}
}

View file

@ -0,0 +1,38 @@
package love.distributedrebirth.numberxd.base2t.part.warp;
import love.distributedrebirth.bassboonyd.BãßBȍőnAuthorInfoʸᴰ;
@BãßBȍőnAuthorInfoʸᴰ(name = "willemtsade", copyright = "©Δ∞ 仙上主天")
public class WarpCipherHeartCore {
private String identifierTone;
private String chinaKey;
private String chinaValue;
public WarpCipherHeartCore() {
}
public String getIdentifierTone() {
return identifierTone;
}
public void setIdentifierTone(String identifierTone) {
this.identifierTone = identifierTone;
}
public String getChinaKey() {
return chinaKey;
}
public void setChinaKey(String chinaKey) {
this.chinaKey = chinaKey;
}
public String getChinaValue() {
return chinaValue;
}
public void setChinaValue(String chinaValue) {
this.chinaValue = chinaValue;
}
}