| 123456789101112131415161718192021222324252627 |
- //---------------------------------------------------------------------------
- #include <vcl.h>
- #pragma hdrstop
- #include "fTexCombineC.h"
- //---------------------------------------------------------------------------
- #pragma package(smart_init)
- #pragma link "GLS.BaseClasses"
- #pragma link "GLS.Coordinates"
- #pragma link "GLS.HUDObjects"
- #pragma link "GLS.Objects"
- #pragma link "GLS.Scene"
- #pragma link "GLS.SceneViewer"
- #pragma resource "*.dfm"
- TFormTexCombine *FormTexCombine;
- //---------------------------------------------------------------------------
- __fastcall TFormTexCombine::TFormTexCombine(TComponent* Owner)
- : TForm(Owner)
- {
- }
- //---------------------------------------------------------------------------
- void __fastcall TFormTexCombine::ACExportExecute(TObject *Sender)
- {
- Close();
- }
- //---------------------------------------------------------------------------
|