Durdles - 2-Player Action Game
pragma Singleton
import QtQuick 2.0
import Felgo 4.0
QtObject {
id: gameInfo
property string winner
property bool winnerRed: false
property int redVictory: 0
property int blueVictory: 0
property bool gameOver: false
property bool gamePaused: true
property int powerUpCount: 0
property int maxPowerUpsOnField: 4
property int speed: 2
property int shieldDamageReduction: 65
property color red: "red"
property color blue: "blue"
property int border: 2
property int radius: 7
property double lighterColor: 1.7
property double opacity: 0.3
property int maxEnergy: 100
property int fillEnergy: 25
property int normalDamage: 18
property int powerDamage: 36
readonly property double maximumPlayerVelocity: 0.8
property real damping: 10