*
* In essence, it instantiates factories...
*/
//Test Octopus Abstract Factory
OctopusType normal = OctopusType.NORMAL;
OctopusType mutant = OctopusType.MUTANT;
OctopusType supermutant = OctopusType.SUPERMUTANT;
try {
System.out.println("Making a normal Octopus, (hopefully with 8 tentacles)...");
System.out.println(OctopusFactory.makeOctopus(normal));
} catch (Exception e) {