10 lines
179 B
QML
10 lines
179 B
QML
|
pragma Strict
|
||
|
import QtQml
|
||
|
|
||
|
QtObject {
|
||
|
property int satisfaction: Satisfaction.NONE
|
||
|
property QtObject output
|
||
|
|
||
|
function inputsKnown(mark: int) : bool { return true }
|
||
|
}
|