24 lines
610 B
ObjectPascal
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.
|