40 lines
1.3 KiB
ObjectPascal
40 lines
1.3 KiB
ObjectPascal
program TTW_Bot_app;
|
|
|
|
uses
|
|
System.StartUpCopy,
|
|
FMX.Forms,
|
|
uGeneral in 'uGeneral.pas' {TTW_Bot},
|
|
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},
|
|
uTWAuth in 'uTWAuth.pas',
|
|
uTTWAPI in 'uTTWAPI.pas',
|
|
uAPIDA in 'uAPIDA.pas',
|
|
uShowText in 'uShowText.pas' {fShowText},
|
|
uWSDA in 'uWSDA.pas',
|
|
uQ in 'uQ.pas' {frmQ},
|
|
fSimpleGrid in 'fSimpleGrid.pas' {frSimpleGrid: TFrame},
|
|
fContruct in 'fContruct.pas' {frContruct: TFrame};
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TTTW_Bot, TTW_Bot);
|
|
Application.CreateForm(TfCreateChat, fCreateChat);
|
|
Application.CreateForm(TfCreateNotify, fCreateNotify);
|
|
Application.CreateForm(TfShowText, fShowText);
|
|
Application.CreateForm(TfrmQ, frmQ);
|
|
Application.Run;
|
|
end.
|