20 lines
426 B
Java
20 lines
426 B
Java
package handiebot.command;
|
|
|
|
import sx.blah.discord.handle.impl.events.guild.channel.message.reaction.ReactionEvent;
|
|
|
|
/**
|
|
* @author Andrew Lalis
|
|
* Class which handles user reactions to songs and performs necessary actions.
|
|
*/
|
|
public class ReactionHandler {
|
|
|
|
/**
|
|
* Processes a reaction.
|
|
* @param event The reaction event to process.
|
|
*/
|
|
public static void handleReaction(ReactionEvent event){
|
|
|
|
}
|
|
|
|
}
|