created location placer factory

made debugger changeable from outside the code
made possible to add more converters
Made changeable FPS in window
This commit is contained in:
Macocian Adrian Radu
2020-07-08 20:11:08 +03:00
parent 4428e45ddd
commit 0d6716e528
18 changed files with 243 additions and 117 deletions

View File

@@ -4,4 +4,5 @@ import java.io.InvalidClassException;
public interface ConverterInterface<T> {
T convert(String content) throws InvalidClassException;
Class<?> getConversionClass();
}