[43] | 1 | program OniUnPacker;
|
---|
| 2 |
|
---|
[10] | 3 | uses
|
---|
[92] | 4 | Forms,
|
---|
[43] | 5 | Main in 'Main.pas' {Form_Main},
|
---|
| 6 | Data in 'Data.pas',
|
---|
| 7 | Helper_LevelDB in 'Helper_LevelDB.pas' {Form_LevelDB},
|
---|
| 8 | Helper_ValueEdit in 'Helper_ValueEdit.pas' {Form_ValueEdit},
|
---|
| 9 | Settings in 'Settings.pas' {Form_Settings},
|
---|
[46] | 10 | Functions in 'Code\Functions.pas',
|
---|
| 11 | Exporters in 'Code\Exporters.pas',
|
---|
| 12 | OniImgClass in 'Code\OniImgClass.pas',
|
---|
| 13 | DataStructures in 'Code\DataStructures.pas',
|
---|
| 14 | OniDataClass in 'Code\OniDataClass.pas',
|
---|
| 15 | Template in 'Tools\Template.pas' {Form_ToolTemplate},
|
---|
| 16 | Preview in 'Tools\Preview.pas' {Form_Preview},
|
---|
| 17 | BinEdit in 'Tools\BinEdit.pas' {Form_ToolTemplate2},
|
---|
| 18 | Extractor in 'Tools\Extractor.pas' {Form_ToolTemplate3},
|
---|
| 19 | RawEdit in 'Tools\RawEdit.pas' {Form_ToolTemplate4},
|
---|
[74] | 20 | TxmpReplace in 'Tools\TxmpReplace.pas' {Form_ToolTemplate5},
|
---|
[92] | 21 | FTypeReg in 'ImportedStuff\FTypeReg.pas',
|
---|
| 22 | FolderBrowser in 'ImportedStuff\FolderBrowser.pas',
|
---|
| 23 | OneInst in 'ImportedStuff\OneInst.pas';
|
---|
[10] | 24 |
|
---|
| 25 | {$R *.res}
|
---|
[56] | 26 | {$R ExtraIcos.res}
|
---|
[10] | 27 |
|
---|
[43] | 28 | begin
|
---|
[92] | 29 | Application.Initialize;
|
---|
| 30 | Application.Title := 'Oni Un/Packer';
|
---|
| 31 | Application.CreateForm(TForm_Main, Form_Main);
|
---|
| 32 | Application.CreateForm(TForm_LevelDB, Form_LevelDB);
|
---|
| 33 | Application.CreateForm(TForm_ValueEdit, Form_ValueEdit);
|
---|
| 34 | Application.CreateForm(TForm_Settings, Form_Settings);
|
---|
| 35 | Application.Run;
|
---|
| 36 | end.
|
---|