package ch.fhnw.oop1.lec14; import ch.fhnw.oop1.lec11.Circle; /** * Created by Kelvin on 31-Jan-16. */ public class Lecture14 { public static void main(String[] args) { Sphere circle = new Sphere(5, Material.DRY); Cube square = new Cube(4, Material.DRY); } }