mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 13:40:04 +00:00
made debugger changeable from outside the code made possible to add more converters Made changeable FPS in window
9 lines
205 B
Java
9 lines
205 B
Java
package parser.converters;
|
|
|
|
import java.io.InvalidClassException;
|
|
|
|
public interface ConverterInterface<T> {
|
|
T convert(String content) throws InvalidClassException;
|
|
Class<?> getConversionClass();
|
|
}
|