-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnit1.~dfm
More file actions
125 lines (125 loc) · 2.38 KB
/
Unit1.~dfm
File metadata and controls
125 lines (125 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
object Form1: TForm1
Left = 652
Top = 19
Width = 613
Height = 684
Anchors = [akLeft, akBottom]
Caption = 'Game'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
OnCreate = FormCreate
OnDestroy = FormDestroy
OnPaint = FormPaint
OnResize = FormResize
OnShortCut = FormShortCut
DesignSize = (
597
645)
PixelsPerInch = 96
TextHeight = 13
object log: TMemo
Left = 40
Top = 440
Width = 521
Height = 133
Anchors = [akBottom]
Enabled = False
Lines.Strings = (
'')
TabOrder = 0
end
object lblScore: TLabeledEdit
Left = 40
Top = 588
Width = 121
Height = 21
Anchors = [akBottom]
EditLabel.Width = 38
EditLabel.Height = 13
EditLabel.Caption = 'lblScore'
Enabled = False
TabOrder = 1
end
object btnConvAdd: TBitBtn
Left = 160
Top = 588
Width = 75
Height = 25
Anchors = [akBottom]
Caption = 'Add Conv'
TabOrder = 2
OnClick = btnConvAddClick
end
object btnConvRem: TButton
Left = 160
Top = 612
Width = 75
Height = 25
Anchors = [akBottom]
Caption = 'Remove Conv'
TabOrder = 3
OnClick = btnConvRemClick
end
object btnIncSpeed: TButton
Left = 240
Top = 584
Width = 75
Height = 25
Anchors = [akBottom]
Caption = 'Inc Speed'
TabOrder = 4
OnClick = btnIncSpeedClick
end
object Button1: TButton
Left = 240
Top = 608
Width = 75
Height = 25
Anchors = [akBottom]
Caption = 'Dec Speed'
TabOrder = 5
OnClick = Button1Click
end
object LivesLbl: TLabeledEdit
Left = 40
Top = 612
Width = 121
Height = 21
Anchors = [akBottom]
EditLabel.Width = 38
EditLabel.Height = 13
EditLabel.Caption = 'lblScore'
Enabled = False
TabOrder = 6
end
object newGameBtn: TButton
Left = 320
Top = 584
Width = 75
Height = 25
Anchors = [akBottom]
Caption = 'New Game!'
TabOrder = 7
OnClick = newGameBtnClick
end
object RefreshTimer: TTimer
Interval = 10
OnTimer = RefreshTimerTimer
end
object Generator: TTimer
Enabled = False
Interval = 2000
OnTimer = GeneratorTimer
Left = 32
end
object SpeedIncTimer: TTimer
Interval = 10000
OnTimer = SpeedIncTimerTimer
Left = 64
end
end