This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import kotlinx.browser.document | |
import kotlinx.browser.window | |
import org.jetbrains.compose.web.attributes.AttrsBuilder | |
import org.w3c.dom.* | |
import org.w3c.dom.svg.SVGElement | |
import kotlin.js.Date | |
enum class SvgIcon(val path: String) { | |
// Icons goes here | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package braayy.lib.util; | |
import org.bukkit.inventory.ItemStack; | |
import java.lang.reflect.Method; | |
@SuppressWarnings("ConstantConditions") | |
public class NBTTag { | |
private static Class<?> NBT_TAG_COMPOUND_CLASS; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package braayy.lib.provider.impl; | |
import braayy.lib.provider.MessageProvider; | |
import org.bukkit.ChatColor; | |
import org.bukkit.command.CommandSender; | |
import org.bukkit.configuration.ConfigurationSection; | |
import org.bukkit.configuration.file.YamlConfiguration; | |
import org.bukkit.entity.Player; | |
import org.bukkit.plugin.Plugin; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package braayy.simplescoreboard; | |
import org.bukkit.Bukkit; | |
import org.bukkit.ChatColor; | |
import org.bukkit.entity.Player; | |
import java.lang.reflect.Field; | |
import java.lang.reflect.Method; | |
import java.util.List; |