Renderer/src/main/java/electrosphere/renderer/hw/MonitorData.java
2025-05-19 23:01:57 -04:00

29 lines
514 B
Java

package electrosphere.renderer.hw;
/**
* Data about a monitor
*/
public class MonitorData {
/**
* The window id of the monitor
*/
public final long windowId;
/**
* The name of the monitor
*/
public final String name;
/**
* Constructor
* @param windowId The window id of the monitor
* @param name The name of the monitor
*/
public MonitorData(long windowId, String name){
this.windowId = windowId;
this.name = name;
}
}