Simulation Core
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

CStudentStationVariables.f90 601 B

1 yıl önce
123456789101112131415161718192021
  1. module CStudentStationVariables
  2. use CVoidEventHandlerCollection
  3. implicit none
  4. public
  5. ! Input vars
  6. logical :: FillupHeadInstallation
  7. type(VoidEventHandlerCollection) :: OnFillupHeadInstallationPress
  8. type(VoidEventHandlerCollection) :: OnFillupHeadRemovePress
  9. logical :: MudBoxInstallation
  10. type(VoidEventHandlerCollection) :: OnMudBoxInstallationPress
  11. type(VoidEventHandlerCollection) :: OnMudBoxRemovePress
  12. logical :: TapSelector
  13. logical :: PitGainLossZero
  14. ! Output vars
  15. contains
  16. end module CStudentStationVariables