Files
package-zearch-temp/UOS/examples/formspectrum.lpr
Indrajith K L 6a1d80d3b8 Implements Module Player working in Form
* Implements Embedding .xm music in Final Application
2025-06-02 15:15:16 +05:30

24 lines
380 B
ObjectPascal

program formspectrum;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}
cthreads,
{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, formspectrum_unit
{ you can add units after this };
{$R *.res}
begin
// RequireDerivedFormResource:=True;
// Application.Scaled:=True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.