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

26 lines
805 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;
2022-10-31 01:55:23 +01:00
import ᴶᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᐪᓫᕽᐪ.StringGhostKey;
import ᴶᐩᐩ.ᒡᒢᑊᒻᒻᓫᔿ.ᒃᣔᒃᓫᒻ.ᑊᐣᓑᖮᐪᔆ.DuytsDocAuthor注;
2022-10-20 03:06:56 +02:00
2022-10-30 16:59:24 +01:00
@DuytsDocAuthor注(name = "للَّٰهِilLצسُو", copyright = "©Δ∞ 仙上主天")
2022-10-20 03:06:56 +02:00
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;
}
}