WaveDlg.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef WAVEDLG_H
  2. #define WAVEDLG_H
  3. /*************************************************************************************************\
  4. WaveDlg.h : Interface for the WaveDlg component. Here you put in wave/water settings
  5. //---------------------------------------------------------------------------//
  6. // Copyright (C) Microsoft Corporation. All rights reserved. //
  7. //===========================================================================//
  8. \*************************************************************************************************/
  9. #include "stdafx.h"
  10. //*************************************************************************************************
  11. /**************************************************************************************************
  12. CLASS DESCRIPTION
  13. WaveDlg:
  14. **************************************************************************************************/
  15. class WaveDlg: public CDialog
  16. {
  17. public:
  18. WaveDlg() : CDialog(IDD_WAVES){}
  19. virtual BOOL OnInitDialog(){ Init(); return FALSE; }
  20. virtual void Init();
  21. void UpdateData();
  22. void OnOK();
  23. float amplitude;
  24. float frequency;
  25. float elevation;
  26. float shallowElevation;
  27. float alphaElevation;
  28. long alphaShallow;
  29. long alphaMiddle;
  30. long alphaDeep;
  31. };
  32. //*************************************************************************************************
  33. #endif // end of file ( WaveDlg.h )