Go to the documentation of this file.00001
00009 package script.media.samsungtv;
00010
00011 import com.rosalfred.core.ia.rivescript.BotReply;
00012 import com.rosalfred.core.ia.rivescript.RiveScript;
00013 import com.rosalfred.core.ia.rivescript.lang.java.RunRiver;
00014
00020 public class player implements RunRiver {
00021
00022 @Override
00023 public BotReply invoke(RiveScript rs, String user, String[] args) {
00024 new SamsungTv(rs).player();
00025
00026 return new BotReply("plop l'éléphant...");
00027 }
00028 }