18 lines
359 B
ObjectPascal
18 lines
359 B
ObjectPascal
program AuraTrader;
|
|
|
|
uses
|
|
FastMM5,
|
|
System.StartUpCopy,
|
|
FMX.Forms,
|
|
MainForm in 'MainForm.pas' {Form1},
|
|
Myc.Trade.Core.DataPoint in '..\Src\Myc.Trade.Core.DataPoint.pas',
|
|
Myc.Trade.Ticker in '..\Src\Myc.Trade.Ticker.pas';
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|