~gang65/life/trunk

« back to all changes in this revision

Viewing changes to app/Constants.qml

  • Committer: Bartosz Kosiorek
  • Date: 2015-12-08 13:28:10 UTC
  • Revision ID: gang65@poczta.onet.pl-20151208132810-9m3fq0n4ozm58b3h
Update to latest version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.4
 
2
 
 
3
 
 
4
QtObject {
 
5
    readonly property int size: 50
 
6
 
 
7
    readonly property color deadColor: "black"
 
8
    readonly property var aliveColors: [ "blue", "green", "red", "yellow", "orange", "cyan", "white" ]
 
9
    readonly property var newBornColors: [ "mediumblue", "mediumseagreen", "orangered", "yellowgreen", "darkorange", "lightcyan", "lightgray" ]
 
10
}