23.03.2019, 18:25
Exemple:
So the code would look something like:
Код:
// File: dialog_login.xml <dialog type="password"> <title>Login</title> <text>Inform your password</text> <button>Login</button> <button>Cancel</button> </dialog>
Код:
new DialogLogin; public OnGameModeInit() { DialogLogin = loadXmlForDialog("dialog_login.xml"); return 1; } //... ShowDialog(DialogLogin);