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

25 lines
724 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注;
@BãßBȍőnAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
public interface BãßBȍőnCoffinGhostSpell extends BãßBȍőnCoffinGhost {
2022-10-21 22:06:41 +02:00
Object PUT_GHOST(GhostKey鬼鑰匙 key, Object value);
2022-10-20 03:06:56 +02:00
2022-10-21 22:06:41 +02:00
default void PUT_GHOST_MAP(GhostKey鬼鑰匙 key) {
2022-10-20 03:06:56 +02:00
PUT_GHOST(key, new HashMap<>());
}
2022-10-21 22:06:41 +02:00
default void PUT_GHOST_LIST(GhostKey鬼鑰匙 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;
}
}