unit Unit2; {$mode objfpc}{$H+} interface uses Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls; type { TForm2 } tForm2 = class(tForm) button1: tButton; button2: tButton; private { private declarations } public { public declarations } end; var form2: tForm2; const mrHochhausraetsel = 314; mrBuchstabenraetsel = 315; implementation {$R *.lfm} { TForm2 } end.