Window
Window use for window creation, update, etc.
PC platform supports creating multiple windows, while Mobile platforms only support creating one window.
Usage
const window = new Window();// Set window titlewindow.title = "My Deft App";// Bind window resize eventwindow.bindResize((e) => { console.log("window resized", e);});// update window size (only supports PC platform)window.resize({ width: 600, height: 400});