mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-14 11:01:06 +01:00
14 lines
327 B
Java
14 lines
327 B
Java
|
package nodomain.freeyourgadget.gadgetbridge.deviceevents;
|
||
|
|
||
|
public class GBDeviceEventScreenshot extends GBDeviceEvent {
|
||
|
public int width;
|
||
|
public int height;
|
||
|
public byte bpp;
|
||
|
public byte[] clut;
|
||
|
public byte[] data;
|
||
|
|
||
|
public GBDeviceEventScreenshot() {
|
||
|
eventClass = EventClass.SCREENSHOT;
|
||
|
}
|
||
|
}
|