|
import { Protocol } from "./WSProtocol";
|
|
|
|
export default class WindowOtherStateChangeNotifyEntity extends Protocol.PacketEntity {
|
|
window_id: number = 0;
|
|
paused = false;
|
|
muted = false;
|
|
volume = 80;
|
|
polling = false;
|
|
title = "";
|
|
window_type = "EWindowType::Normal";
|
|
}
|