home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Actual Thematic 25: Programming
/
pc_actual_25.iso
/
Delphi
/
Morfit 3D Engine SDK
/
SDK30Delphi.exe
/
FILES
/
181
/
Hello3D.exe
/
Light.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-09-17
|
242 b
|
15 lines
program Light;
uses
Forms,
morfitD in '..\..\..\Engine\Include\morfitD.pas',
Unit1 in 'Src\Unit1.pas' {Form1};
{$R *.RES}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.