Files
ttw_fmx_v10/TTW_Bot_app.dpr
T
PC1\PTyTb cffb877b39 init
2025-08-05 20:19:01 +03:00

24 lines
610 B
ObjectPascal

program TTW_Bot_app;
uses
System.StartUpCopy,
FMX.Forms,
uGeneral in 'uGeneral.pas' {Form1},
fSettings in 'fSettings.pas' {frSettings: TFrame},
fAI in 'fAI.pas' {frAI: TFrame},
fNotify in 'fNotify.pas' {frNotify: TFrame},
fAutoActions in 'fAutoActions.pas' {frAutoActions: TFrame},
fChatOBS in 'fChatOBS.pas' {frChatOBS: TFrame},
fLog in 'fLog.pas' {frLog: TFrame},
uRecords in 'uRecords.pas',
fCommands in 'fCommands.pas' {frCommands: TFrame},
uDataBase in 'uDataBase.pas';
{$R *.res}
begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.Run;
end.