diff --git a/applications/tappytux/gameconfigform.lfm b/applications/tappytux/gameconfigform.lfm new file mode 100644 index 000000000..5711d1fc2 --- /dev/null +++ b/applications/tappytux/gameconfigform.lfm @@ -0,0 +1,8 @@ +object Form1: TForm1 + Left = 238 + Height = 240 + Top = 161 + Width = 320 + Caption = 'Form1' + LCLVersion = '0.9.31' +end diff --git a/applications/tappytux/gameconfigform.pas b/applications/tappytux/gameconfigform.pas new file mode 100644 index 000000000..274d65b5c --- /dev/null +++ b/applications/tappytux/gameconfigform.pas @@ -0,0 +1,26 @@ +unit gameconfigform; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs; + +type + TForm1 = class(TForm) + private + { private declarations } + public + { public declarations } + end; + +var + Form1: TForm1; + +implementation + +{$R *.lfm} + +end. + diff --git a/applications/tappytux/gameplayform.lfm b/applications/tappytux/gameplayform.lfm new file mode 100644 index 000000000..41e0e2b1f --- /dev/null +++ b/applications/tappytux/gameplayform.lfm @@ -0,0 +1,8 @@ +object Form2: TForm2 + Left = 238 + Height = 240 + Top = 161 + Width = 320 + Caption = 'Form2' + LCLVersion = '0.9.31' +end diff --git a/applications/tappytux/gameplayform.pas b/applications/tappytux/gameplayform.pas new file mode 100644 index 000000000..d6cdf6ba0 --- /dev/null +++ b/applications/tappytux/gameplayform.pas @@ -0,0 +1,26 @@ +unit gameplayform; + +{$mode objfpc}{$H+} + +interface + +uses + Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs; + +type + TForm2 = class(TForm) + private + { private declarations } + public + { public declarations } + end; + +var + Form2: TForm2; + +implementation + +{$R *.lfm} + +end. + diff --git a/applications/tappytux/tappytux.ico b/applications/tappytux/tappytux.ico new file mode 100644 index 000000000..0341321b5 Binary files /dev/null and b/applications/tappytux/tappytux.ico differ diff --git a/applications/tappytux/tappytux.lpi b/applications/tappytux/tappytux.lpi new file mode 100644 index 000000000..5c2f92b09 --- /dev/null +++ b/applications/tappytux/tappytux.lpi @@ -0,0 +1,109 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/applications/tappytux/tappytux.lpr b/applications/tappytux/tappytux.lpr new file mode 100644 index 000000000..59b2f4cd2 --- /dev/null +++ b/applications/tappytux/tappytux.lpr @@ -0,0 +1,22 @@ +program tappytux; + +{$mode objfpc}{$H+} + +uses + {$IFDEF UNIX}{$IFDEF UseCThreads} + cthreads, + {$ENDIF}{$ENDIF} + Interfaces, // this includes the LCL widgetset + Forms, gameconfigform, gameplayform + { you can add units after this }; + +{$R *.res} + +begin + RequireDerivedFormResource := True; + Application.Initialize; + Application.CreateForm(TForm1, Form1); + Application.CreateForm(TForm2, Form2); + Application.Run; +end. + diff --git a/applications/tappytux/tappytux.res b/applications/tappytux/tappytux.res new file mode 100644 index 000000000..7c6cf3e4b Binary files /dev/null and b/applications/tappytux/tappytux.res differ