add base structure

This commit is contained in:
2024-10-25 20:17:25 +02:00
parent 0c3aeed4f4
commit 2cdf574df0
3 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
package net.tomatentum.marinare.wrapper.javacord;
import net.tomatentum.marinara.interaction.InteractionType;
import net.tomatentum.marinara.interaction.commands.ApplicationCommandDefinition;
import net.tomatentum.marinara.interaction.commands.ExecutableCommandDefinition;
import net.tomatentum.marinara.interaction.commands.option.OptionType;
import net.tomatentum.marinara.wrapper.LibraryWrapper;
public class JavacordWrapper extends LibraryWrapper {
@Override
public void registerApplicationCommand(ApplicationCommandDefinition def) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'registerApplicationCommand'");
}
@Override
public InteractionType getInteractionType(Class<?> clazz) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'getInteractionType'");
}
@Override
public Object convertCommandOption(Object context, OptionType type, String optionName) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'convertCommandOption'");
}
@Override
public ExecutableCommandDefinition getCommandDefinition(Object context) {
// TODO Auto-generated method stub
throw new UnsupportedOperationException("Unimplemented method 'getCommandDefinition'");
}
}