ClaptrapBot/src/net/Broken/Commandes/Over18/Ass.java

20 lines
384 B
Java
Raw Normal View History

2017-03-20 21:01:49 +01:00
package net.Broken.Commandes.Over18;
2016-12-08 20:05:23 +01:00
2017-03-20 21:01:49 +01:00
import net.Broken.Commandes.NumberedCommande;
import org.apache.logging.log4j.LogManager;
2016-12-08 20:05:23 +01:00
/**
* Created by seb65 on 07/11/2016.
*/
2017-03-20 18:36:26 +01:00
public class Ass extends NumberedCommande {
2016-12-08 20:05:23 +01:00
2017-03-20 18:36:26 +01:00
public Ass() {
super(LogManager.getLogger(), "http://les400culs.com/");
2016-12-08 20:05:23 +01:00
}
2017-03-20 21:01:49 +01:00
@Override
public String toString() {
return "Ass";
}
2016-12-08 20:05:23 +01:00
}