package mug13; /* * This is the a test world for the server to work with. * * @author Brett McMillian * @author Louisa Poythress * @author Michael Billups * */ import java.io.*; public class TestWorld { //*************** // Fields //*************** //*************** // Constructors //*************** public TestWorld() {} //*************** // Methods //*************** public String perform(Action tim) throws IOException, ClassNotFoundException { return "Hello"; } }