Implements Module Player working in Form
* Implements Embedding .xm music in Final Application
This commit is contained in:
23
UOS/examples/formspectrum.lpr
Normal file
23
UOS/examples/formspectrum.lpr
Normal file
@@ -0,0 +1,23 @@
|
||||
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.
|
||||
|
||||
Reference in New Issue
Block a user