gdxapp4d/gdxapp4d-lib-bassboonyd/src/main/java/love/distributedrebirth/bassboon/death/BãßBȍőnCoffinGhostSpell.java

26 lines
780 B
Java
Raw Normal View History

2022-10-20 03:06:56 +02:00
package love.distributedrebirth.bassboon.death;
import java.util.ArrayList;
import java.util.HashMap;
import love.distributedrebirth.bassboon.clazz.BãßBȍőnAuthor注;
import love.distributedrebirth.bassboon.jpp.lang.StringGhostKey;
2022-10-20 03:06:56 +02:00
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffinGhostSpell extends BãßBȍőnCoffinGhost {
Object PUT_GHOST(StringGhostKey key, Object value);
2022-10-20 03:06:56 +02:00
default void PUT_GHOST_MAP(StringGhostKey key) {
2022-10-20 03:06:56 +02:00
PUT_GHOST(key, new HashMap<>());
}
default void PUT_GHOST_LIST(StringGhostKey key) {
2022-10-20 03:06:56 +02:00
PUT_GHOST(key, new ArrayList<>());
}
static BãßBȍőnCoffinGhostSpell castᴼᶠ(BãßBȍőnCoffinGhost death) {
return (BãßBȍőnCoffinGhostSpell) death;
}
}