-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathEpisodenManager.lpr
More file actions
34 lines (30 loc) · 1.5 KB
/
Copy pathEpisodenManager.lpr
File metadata and controls
34 lines (30 loc) · 1.5 KB
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 Episode manager *)
(* *)
(* 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 EpisodenManager;
{$MODE ObjFPC}{$H+}
Uses
Forms,
Interfaces,
Unit1, Unit2, unit3, unit4, unit5;
Begin
Application.Initialize;
Application.Title:='';
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm3, Form3);
Application.CreateForm(TForm4, Form4);
Application.CreateForm(TForm5, Form5);
Application.Run;
End.