source: trunk/Packages/CoolStreaming/Demo/BitStream/BitStreamTest.lpr

Last change on this file was 2, checked in by chronos, 9 years ago
  • Added: TPakFile class for extraction PAK files from original game.
File size: 337 bytes
Line 
1program BitStreamTest;
2
3{$mode objfpc}{$H+}
4
5uses
6 {$IFDEF UNIX}{$IFDEF UseCThreads}
7 cthreads,
8 {$ENDIF}{$ENDIF}
9 Interfaces, // this includes the LCL widgetset
10 Forms, UMainForm, CoolStreaming;
11
12{$R *.res}
13
14begin
15 Application.Initialize;
16 Application.CreateForm(TMainForm, MainForm);
17 Application.Run;
18end.
19
Note: See TracBrowser for help on using the repository browser.