MovementsC.cpp 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include <tchar.h>
  5. //---------------------------------------------------------------------------
  6. USEFORM("pointto\fPointtoC.cpp", FormPointto);
  7. USEFORM("pong\fPongC.cpp", FormPong);
  8. USEFORM("smoothnavi\fSmoothNaviC.cpp", Form1);
  9. USEFORM("tweening\fTweeningC.cpp", FormTweening);
  10. USEFORM("objmove\fObjmoveC.cpp", FormObjmove);
  11. USEFORM("column\fColumnC.cpp", FormColumn);
  12. USEFORM("events\fEventsC.cpp", FormEvents);
  13. USEFORM("fcMovements.cpp", FormMovements);
  14. USEFORM("hierarch\fHierarchC.cpp", FormHierarch);
  15. USEFORM("manual\fManualC.cpp", FormManual);
  16. //---------------------------------------------------------------------------
  17. int WINAPI _tWinMain(HINSTANCE, HINSTANCE, LPTSTR, int)
  18. {
  19. try
  20. {
  21. Application->Initialize();
  22. Application->MainFormOnTaskBar = true;
  23. Application->CreateForm(__classid(TFormMovements), &FormMovements);
  24. Application->Run();
  25. }
  26. catch (Exception &exception)
  27. {
  28. Application->ShowException(&exception);
  29. }
  30. catch (...)
  31. {
  32. try
  33. {
  34. throw Exception("");
  35. }
  36. catch (Exception &exception)
  37. {
  38. Application->ShowException(&exception);
  39. }
  40. }
  41. return 0;
  42. }
  43. //---------------------------------------------------------------------------