9 lines
215 B
Java
9 lines
215 B
Java
//: typeinfo/pets/Cymric.java
|
|
// ©2015 MindView LLC: see Copyright.txt
|
|
package typeinfo.pets;
|
|
|
|
public class Cymric extends Manx {
|
|
public Cymric(String name) { super(name); }
|
|
public Cymric() { super(); }
|
|
} ///:~
|