You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
265 B
Java
13 lines
265 B
Java
![]()
5 months ago
|
package com.jagrosh.jmusicbot.commands;
|
||
|
|
||
|
import com.jagrosh.jdautilities.command.Command;
|
||
|
|
||
|
public abstract class OwnerCommand extends Command
|
||
|
{
|
||
|
public OwnerCommand()
|
||
|
{
|
||
|
this.category = new Category("Owner");
|
||
|
this.ownerCommand = true;
|
||
|
}
|
||
|
}
|