package mug13; public interface Verb { ///use as (insert verb here).perform(Person, Object) //needs to return an array of length two with two strings to broadcast, first to the subject and second to everyone else public String[] execute(String subject, String object); }