Добавил окна добавления интеграций с ОБС

This commit is contained in:
PC1\PTyTb
2025-08-06 09:21:43 +03:00
parent 7e77775cd4
commit d68064187d
16 changed files with 1518 additions and 1012 deletions
+8 -2
View File
@@ -8,16 +8,22 @@ uses
fAI in 'fAI.pas' {frAI: TFrame},
fNotify in 'fNotify.pas' {frNotify: TFrame},
fAutoActions in 'fAutoActions.pas' {frAutoActions: TFrame},
fChatOBS in 'fChatOBS.pas' {frChatOBS: 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';
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.