-
Notifications
You must be signed in to change notification settings - Fork 5
/
bridge_builder.lpr
34 lines (30 loc) · 1.59 KB
/
bridge_builder.lpr
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
(******************************************************************************)
(* *)
(* Author : Uwe Schächterle (Corpsman) *)
(* *)
(* This file is part of OpenGL Clear Engine *)
(* *)
(* See the file license.md, located under: *)
(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *)
(* for details about the license. *)
(* *)
(* It is not allowed to change or remove this text from any *)
(* source file of the project. *)
(* *)
(******************************************************************************)
Program bridge_builder;
{$MODE objfpc}{$H+}
Uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, imagesforlazarus, Unit1, uphysik, uvectormath, ufifo, ueventer,
uopengl_graphikengine, uopengl_widgetset, uOpenGL_ASCII_Font,
uopengl_truetype_font, uopengl_font_common, ugraphics, ubridge_builder,
uscreens, umap;
Begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
End.