-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathUServer.dpr
More file actions
48 lines (45 loc) · 1.81 KB
/
UServer.dpr
File metadata and controls
48 lines (45 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
program UServer;
uses
Vcl.Forms,
UServer.Main in 'UServer.Main.pas' {FormMain},
UServer.CommonFunc in 'UServer.CommonFunc.pas',
PngBitBtn in 'Import\PngBitBtn.pas',
PngButtonFunctions in 'Import\PngButtonFunctions.pas',
PngCheckListBox in 'Import\PngCheckListBox.pas',
PngFunctions in 'Import\PngFunctions.pas',
PngImageList in 'Import\PngImageList.pas',
PngSpeedButton in 'Import\PngSpeedButton.pas',
PNGWork in 'Import\PNGWork.pas',
UServer.GameEvents in 'UServer.GameEvents.pas',
UServer.Commands in 'UServer.Commands.pas',
UServer.Types in 'UServer.Types.pas',
TelegAPI.Bot in '..\SRC\TelegAPI-master\Source\TelegAPI.Bot.pas',
TelegAPi.Classes in '..\SRC\TelegAPI-master\Source\TelegAPi.Classes.pas',
TelegAPi.RegisterIDE in '..\SRC\TelegAPI-master\Source\TelegAPi.RegisterIDE.pas',
TelegAPi.Utils in '..\SRC\TelegAPI-master\Source\TelegAPi.Utils.pas',
XSuperJSON in '..\SRC\TelegAPI-master\Source\XSuperJSON.pas',
XSuperObject in '..\SRC\TelegAPI-master\Source\XSuperObject.pas',
UServer.Banning in 'UServer.Banning.pas' {FormBan},
VK.Classes in 'VK.Classes.pas',
UServer.Database in 'UServer.Database.pas',
UServer.Notify in 'UServer.Notify.pas',
UServer.Memo in 'UServer.Memo.pas' {FormMemo},
UServer.Donat in 'UServer.Donat.pas' {FormDonat},
Vcl.Themes,
Vcl.Styles,
UnturnedIDB in '..\UnturnedExplorer\UnturnedIDB.pas',
HGM.SQLang in '..\SQLite\HGM.SQLang.pas',
HGM.SQLite in '..\SQLite\HGM.SQLite.pas',
HGM.SQLite.Wrapper in '..\SQLite\HGM.SQLite.Wrapper.pas';
{$R *.res}
begin
Application.Initialize;
Application.MainFormOnTaskbar := True;
Application.CreateForm(TFormMain, FormMain);
Application.CreateForm(TFormBan, FormBan);
Application.CreateForm(TFormDonat, FormDonat);
FormMain.Show;
Application.ProcessMessages;
FormMain.OnStartManger;
Application.Run;
end.