fTexCombineC.cpp 875 B

123456789101112131415161718192021222324252627
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "fTexCombineC.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma link "GLS.BaseClasses"
  8. #pragma link "GLS.Coordinates"
  9. #pragma link "GLS.HUDObjects"
  10. #pragma link "GLS.Objects"
  11. #pragma link "GLS.Scene"
  12. #pragma link "GLS.SceneViewer"
  13. #pragma resource "*.dfm"
  14. TFormTexCombine *FormTexCombine;
  15. //---------------------------------------------------------------------------
  16. __fastcall TFormTexCombine::TFormTexCombine(TComponent* Owner)
  17. : TForm(Owner)
  18. {
  19. }
  20. //---------------------------------------------------------------------------
  21. void __fastcall TFormTexCombine::ACExportExecute(TObject *Sender)
  22. {
  23. Close();
  24. }
  25. //---------------------------------------------------------------------------