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

@@ -7,4 +7,9 @@ public class IntegerConverter implements ConverterInterface<Integer> {
content = content.replaceAll(" ", "");
return Integer.parseInt(content);
}
@Override
public Class<?> getConversionClass() {
return Integer.class;
}
}