program graphics_3d; {$mode objfpc}{$H+} uses {$IFDEF UNIX} cthreads, {$ENDIF} {$IFDEF HASAMIGA} athreads, {$ENDIF} Interfaces, // this includes the LCL widgetset Forms, Octahedron, geometry { you can add units after this }; {$R *.res} begin Randomize; RequireDerivedFormResource:=True; Application.Scaled:=True; {$PUSH}{$WARN 5044 OFF} Application.MainFormOnTaskbar:=True; {$POP} Application.Initialize; Application.CreateForm(TForm1, Form1); Application.Run; end.