source: tags/1.3.0/Forms/UFormImages.pas

Last change on this file was 100, checked in by chronos, 20 months ago
  • Added: New game mode carrier where user needs to play existing cities and gradually unlock them by reaching exprected transported number of passengers.
File size: 601 bytes
Line 
1unit UFormImages;
2
3interface
4
5uses
6 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, ExtCtrls;
7
8type
9
10 { TFormImages }
11
12 TFormImages = class(TForm)
13 ImageAchievement: TImage;
14 ImageLine: TImage;
15 ImageCarriage: TImage;
16 ImageFastForward: TImage;
17 ImageTerminal: TImage;
18 ImagePause: TImage;
19 ImagePlay: TImage;
20 ImageLeftArrow: TImage;
21 ImageLocomotive: TImage;
22 ImagePassenger: TImage;
23 ImageTunnel: TImage;
24 ImageScreenshot: TImage;
25 end;
26
27var
28 FormImages: TFormImages;
29
30
31implementation
32
33{$R *.lfm}
34
35end.
36
Note: See TracBrowser for help on using the repository browser.