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