pvbemu/src/desktop/vue/VUE.java

10 lines
179 B
Java
Raw Normal View History

2020-07-30 18:04:41 +00:00
package vue;
// Template class for emulation core implementations
public abstract class VUE {
// Retrieve the implementation's name
public abstract String getName();
}