This repository has been archived on 2024-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MyPresenter1.0/MPS/mps.lpr
Your Name f6e07cd90b ??
2015-08-30 01:23:48 -07:00

24 lines
470 B
ObjectPascal

program mps;
{$mode objfpc}{$H+}
uses
{$IFDEF UNIX}{$IFDEF UseCThreads}
cthreads,
{$ENDIF}{$ENDIF}
Interfaces, // this includes the LCL widgetset
Forms, LResources, main, projection, song;
{$R *.res}
begin
{$I images.lrs}
RequireDerivedFormResource := True;
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TfrmProjection, frmProjection);
Application.CreateForm(TfrmSong, frmSong);
Application.Run;
end.