-
Notifications
You must be signed in to change notification settings - Fork 5
/
unit1.lfm
79 lines (79 loc) · 1.78 KB
/
unit1.lfm
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
object Form1: TForm1
Left = 347
Height = 692
Top = 107
Width = 804
ActiveControl = OpenGLControl1
Caption = 'Form1'
ClientHeight = 692
ClientWidth = 804
Menu = MainMenu1
Position = poScreenCenter
LCLVersion = '3.99.0.0'
OnCreate = FormCreate
object OpenGLControl1: TOpenGLControl
Left = 0
Height = 432
Top = 0
Width = 440
OnMakeCurrent = OpenGLControl1MakeCurrent
OnPaint = OpenGLControl1Paint
OnResize = OpenGLControl1Resize
end
object Timer1: TTimer
OnTimer = Timer1Timer
Left = 24
Top = 24
end
object MainMenu1: TMainMenu
Left = 128
Top = 24
object MenuItem1: TMenuItem
Caption = 'File'
object MenuItem3: TMenuItem
Caption = 'New level'
OnClick = MenuItem3Click
end
object MenuItem5: TMenuItem
Caption = 'Load level'
OnClick = MenuItem5Click
end
object MenuItem6: TMenuItem
Caption = 'Save level'
OnClick = MenuItem6Click
end
object MenuItem4: TMenuItem
Caption = 'Save level as'
OnClick = MenuItem4Click
end
object MenuItem2: TMenuItem
Caption = 'Leave editor'
OnClick = MenuItem2Click
end
end
object MenuItem7: TMenuItem
Caption = 'View'
object MenuItem8: TMenuItem
Caption = 'Gird'
OnClick = MenuItem8Click
end
end
end
object OpenPictureDialog1: TOpenPictureDialog
Filter = 'Portable Network Graphik|*.png|All|*.*'
Left = 256
Top = 24
end
object SaveDialog1: TSaveDialog
DefaultExt = '.lvl'
Filter = 'Brid builder level|*.lvl|All|*.*'
Left = 392
Top = 24
end
object OpenDialog1: TOpenDialog
DefaultExt = '.lvl'
Filter = 'Brid builder level|*.lvl|All|*.*'
Left = 496
Top = 24
end
end