9 lines
209 B
Java
Raw Normal View History

2015-06-15 17:47:35 -07:00
//: typeinfo/pets/Pet.java
// <20>2015 MindView LLC: see Copyright.txt
package typeinfo.pets;
public class Pet extends Individual {
public Pet(String name) { super(name); }
public Pet() { super(); }
} ///:~