Warning, /games/kbreakout/src/qml/Singleshot.qml is written in an unsupported language. File is not indexed.

0001 /*
0002     SPDX-FileCopyrightText: 2012 Viranch Mehta <viranch.mehta@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 import QtQuick 2.3
0008 
0009 Timer {
0010     signal timeout(variant target)
0011 
0012     property variant target
0013 
0014     onTriggered: {
0015         timeout(target);
0016         destroy(10);
0017     }
0018 }