qmlFrontend/qml/qmlFrontend/Connect.qml
author unc0rr
Sat, 21 Nov 2015 12:40:33 +0300
branchqmlfrontend
changeset 11422 c6c6a4b32cea
parent 10896 5a74923120d5
permissions -rw-r--r--
Handle ROOM UPD

import QtQuick 2.0
import Hedgewars.Engine 1.0

Rectangle {
    HWButton {
        id: btnNetConnect
        x: 80
        y: 80
        width: 256
        height: 128

        onClicked: HWEngine.connect("netserver.hedgewars.org", 46631);
    }
}