9 lines
218 B
TypeScript
9 lines
218 B
TypeScript
|
import { Protocol } from "./WSProtocol";
|
||
|
|
||
|
export default class WindowOtherStateChangeNotifyEntity extends Protocol.PacketEntity {
|
||
|
window_id: number = 0;
|
||
|
playing = false;
|
||
|
focus = false;
|
||
|
muted = false;
|
||
|
}
|