Implements Module Player working in Form
* Implements Embedding .xm music in Final Application
This commit is contained in:
18
UOS/examples/simpledrums.lpr
Normal file
18
UOS/examples/simpledrums.lpr
Normal file
@@ -0,0 +1,18 @@
|
||||
program simpledrums;
|
||||
|
||||
{$mode objfpc}{$H+}
|
||||
|
||||
uses
|
||||
// cmem,
|
||||
{$IFDEF UNIX}
|
||||
cthreads,
|
||||
{$ENDIF}
|
||||
Interfaces, // this includes the LCL widgetset
|
||||
Forms, main_sd;
|
||||
|
||||
begin
|
||||
Application.Initialize;
|
||||
Application.CreateForm(TForm1, Form1);
|
||||
Application.Run;
|
||||
end.
|
||||
|
||||
Reference in New Issue
Block a user