remove java WindowConfig (#434)

This commit is contained in:
Erimel
2023-01-03 11:12:35 -05:00
committed by GitHub
parent c6b9d2b0e0
commit 003bb61dfb
2 changed files with 0 additions and 67 deletions

View File

@@ -20,8 +20,6 @@ public class VRConfig {
private final ServerConfig server = new ServerConfig();
private final WindowConfig window = new WindowConfig();
private final FiltersConfig filters = new FiltersConfig();
private final OSCConfig oscRouter = new OSCConfig();
@@ -79,10 +77,6 @@ public class VRConfig {
return server;
}
public WindowConfig getWindow() {
return window;
}
public FiltersConfig getFilters() {
return filters;
}

View File

@@ -1,61 +0,0 @@
package dev.slimevr.config;
public class WindowConfig {
public static final float INITAL_ZOOM = 1.5f;
private float zoom = INITAL_ZOOM;
private int width = 800;
private int height = 800;
private int posx = -1;
private int posy = -1;
public WindowConfig() {
}
public float getZoom() {
return zoom;
}
public void setZoom(float zoom) {
this.zoom = zoom;
}
public int getWidth() {
return width;
}
public void setWidth(int width) {
this.width = width;
}
public int getHeight() {
return height;
}
public void setHeight(int height) {
this.height = height;
}
public int getPosx() {
return posx;
}
public void setPosx(int posx) {
this.posx = posx;
}
public int getPosy() {
return posy;
}
public void setPosy(int posy) {
this.posy = posy;
}
}