initial commit
initial commit of all files
This commit is contained in:
parent
748012f50a
commit
a1bcd8e0a3
23 changed files with 13925 additions and 0 deletions
22
fpc/bandy2.lpr
Normal file
22
fpc/bandy2.lpr
Normal file
|
@ -0,0 +1,22 @@
|
|||
program bandy2;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
||||
cthreads,
|
||||
{$ENDIF}{$ENDIF}
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, Unit1
|
||||
{ you can add units after this };
|
||||
|
||||
{$R *.res}
|
||||
|
||||
begin
|
||||
RequireDerivedFormResource:=True;
|
||||
Application.Scaled:=True;
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue