This commit is contained in:
PC1\PTyTb
2025-08-05 20:19:01 +03:00
commit cffb877b39
46 changed files with 27769 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
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.