aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/lib/zlportio/Example/portio.dpr
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/lib/zlportio/Example/portio.dpr')
-rw-r--r--Game/Code/lib/zlportio/Example/portio.dpr14
1 files changed, 14 insertions, 0 deletions
diff --git a/Game/Code/lib/zlportio/Example/portio.dpr b/Game/Code/lib/zlportio/Example/portio.dpr
new file mode 100644
index 00000000..5d86ae5d
--- /dev/null
+++ b/Game/Code/lib/zlportio/Example/portio.dpr
@@ -0,0 +1,14 @@
+{$A-,H+}
+program portio;
+
+uses
+ Forms,
+ mainform in 'mainform.pas' {Main};
+
+{$R *.RES}
+
+begin
+ Application.Initialize;
+ Application.CreateForm(TMain, Main);
+ Application.Run;
+end.