From 3676da6995175660892f87601141a9fc1ee82a0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20St=C3=A4ding?= Date: Tue, 28 May 2024 19:27:19 +0200 Subject: [PATCH] Start --- .../command/teleport/TeleportCommandFactory.kt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 proxy/src/main/kotlin/org/anvilpowered/catalyst/proxy/command/teleport/TeleportCommandFactory.kt 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() + } +}