Simulation Core
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CStudentStationVariables.f90 601 B

1 år sedan
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