diff --git a/proxy/src/main/kotlin/org/anvilpowered/catalyst/proxy/command/teleport/TeleportCommandFactory.kt b/proxy/src/main/kotlin/org/anvilpowered/catalyst/proxy/command/teleport/TeleportCommandFactory.kt new file mode 100644 index 00000000..56f71d7b --- /dev/null +++ b/proxy/src/main/kotlin/org/anvilpowered/catalyst/proxy/command/teleport/TeleportCommandFactory.kt @@ -0,0 +1,16 @@ +package org.anvilpowered.catalyst.proxy.command.teleport + +import com.velocitypowered.api.command.CommandSource +import org.anvilpowered.kbrig.builder.ArgumentBuilder +import org.anvilpowered.kbrig.tree.LiteralCommandNode + +class TeleportCommandFactory { + + fun create(): LiteralCommandNode { + return ArgumentBuilder.literal("teleport") + .then( + + ) + .build() + } +}