mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-13 10:31:03 +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;
|
|
}
|
|
}
|