[93] | 1 | program OniUnPacker;
|
---|
| 2 |
|
---|
| 3 | uses
|
---|
| 4 | Forms,
|
---|
| 5 | FTypeReg in 'ImportedStuff\FTypeReg.pas',
|
---|
| 6 | FolderBrowser in 'ImportedStuff\FolderBrowser.pas',
|
---|
| 7 | OneInst in 'ImportedStuff\OneInst.pas',
|
---|
| 8 | Data in 'Global\Data.pas',
|
---|
| 9 | TypeDefs in 'Global\TypeDefs.pas',
|
---|
| 10 | DataAccess in 'DataAccess\DataAccess.pas',
|
---|
| 11 | Access_OniArchive in 'DataAccess\Access_OniArchive.pas',
|
---|
| 12 | Access_OUP_ADB in 'DataAccess\Access_OUP_ADB.pas',
|
---|
| 13 | ConnectionManager in 'DataAccess\ConnectionManager.pas',
|
---|
| 14 | Main in 'Main.pas' {Form_Main},
|
---|
| 15 | Settings in 'Settings.pas' {Form_Settings},
|
---|
| 16 | Template in 'Tools\Template.pas' {Form_ToolTemplate},
|
---|
| 17 | Preview in 'Tools\Preview.pas' {Form_Preview},
|
---|
[97] | 18 | OniImgClass in 'Global\OniImgClass.pas',
|
---|
| 19 | Functions in 'Global\Functions.pas',
|
---|
| 20 | RawList in 'Global\RawList.pas',
|
---|
| 21 | DatStructureLoader in 'Global\DatStructureLoader.pas',
|
---|
[104] | 22 | Exporters in 'Global\Exporters.pas',
|
---|
| 23 | ValueEdit in 'Helper\ValueEdit.pas' {Form_ValueEdit},
|
---|
| 24 | BinEdit in 'Tools\BinEdit.pas' {Form_BinEdit},
|
---|
[105] | 25 | RawEdit in 'Tools\RawEdit.pas' {Form_RawEdit},
|
---|
| 26 | Extractor in 'Tools\Extractor.pas' {Form_Extractor},
|
---|
[106] | 27 | TxmpReplace in 'Tools\TxmpReplace.pas' {Form_TxmpReplace},
|
---|
[113] | 28 | WhatLinksHere in 'Helper\WhatLinksHere.pas' {Form_WhatLinksHere},
|
---|
[125] | 29 | DatLinks in 'Global\DatLinks.pas',
|
---|
| 30 | _DataTypes in 'FileClasses\_DataTypes.pas',
|
---|
[129] | 31 | _FileTypes in 'FileClasses\_FileTypes.pas',
|
---|
[181] | 32 | LevelDB in 'Helper\LevelDB.pas' {Form_LevelDB},
|
---|
| 33 | Img_DDSTypes in 'Global\Img_DDSTypes.pas';
|
---|
[93] | 34 |
|
---|
| 35 | {$R *.res}
|
---|
| 36 | {$R ExtraIcos.res}
|
---|
| 37 |
|
---|
| 38 | begin
|
---|
| 39 | Application.Initialize;
|
---|
| 40 | Application.Title := 'Oni Un/Packer';
|
---|
| 41 | Application.CreateForm(TForm_Main, Form_Main);
|
---|
| 42 | Application.CreateForm(TForm_Settings, Form_Settings);
|
---|
[104] | 43 | Application.CreateForm(TForm_ValueEdit, Form_ValueEdit);
|
---|
[110] | 44 | Application.CreateForm(TForm_WhatLinksHere, Form_WhatLinksHere);
|
---|
[129] | 45 | Application.CreateForm(TForm_LevelDB, Form_LevelDB);
|
---|
[93] | 46 | Application.Run;
|
---|
[110] | 47 | end.
|
---|