parent
3c0c2cff6f
commit
dbc17bb003
@ -0,0 +1,6 @@ |
||||
let name () = "oboy" |
||||
let version () = "1.0a" |
||||
|
||||
let () = |
||||
Callback.register "name" name; |
||||
Callback.register "version" version; |
@ -0,0 +1,19 @@ |
||||
import QtQuick 2.4 |
||||
import QtQuick.Window 2.0 |
||||
|
||||
Window { |
||||
title: "About" |
||||
// A background map is 32 x 32 tiles. |
||||
// Each tile is 8 x 8 pixels. |
||||
width: 128 |
||||
height: 128 |
||||
maximumWidth: width |
||||
minimumWidth: width |
||||
maximumHeight: height |
||||
minimumHeight: height |
||||
|
||||
Text { |
||||
id: name |
||||
text: qsTr("About name") |
||||
} |
||||
} |
Loading…
Reference in new issue