2021-08-09 10:59:16 +08:00
|
|
|
import { Protocol } from "./WSProtocol";
|
|
|
|
|
|
|
|
export default class WindowOtherStateChangeNotifyEntity extends Protocol.PacketEntity {
|
|
|
|
window_id: number = 0;
|
2022-04-08 11:34:55 +08:00
|
|
|
paused = false;
|
2021-08-09 10:59:16 +08:00
|
|
|
muted = false;
|
2022-05-06 18:57:38 +08:00
|
|
|
volume = 80;
|
2022-01-19 19:28:03 +08:00
|
|
|
polling = false;
|
|
|
|
title = "";
|
|
|
|
window_type = "EWindowType::Normal";
|
2021-08-09 10:59:16 +08:00
|
|
|
}
|