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}, fOBS in 'fOBS.pas' {frOBS: TFrame}, fLog in 'fLog.pas' {frLog: TFrame}, uRecords in 'uRecords.pas', fCommands in 'fCommands.pas' {frCommands: TFrame}, uDataBase in 'uDataBase.pas', fColorSettings in 'fColorSettings.pas' {frColorSettings: TFrame}, uCreateChat in 'uCreateChat.pas' {fCreateChat}, fFontSettings in 'fFontSettings.pas' {frFontSettings: TFrame}, uCreateNotify in 'uCreateNotify.pas' {fCreateNotify}; {$R *.res} begin Application.Initialize; Application.CreateForm(TForm1, Form1); Application.CreateForm(TfCreateChat, fCreateChat); Application.CreateForm(TfCreateNotify, fCreateNotify); Application.Run; end.