(version 2)
(include "sci.sh")
(use "Cycle")
(script 956)



(class ForwardCounter of Fwd
    (properties)

    (method (init param1 theSeconds theState)
        (super:init(param1))
        (if (>= paramTotal 2)
            = seconds theSeconds
            (if (>= paramTotal 3)
                = state theState
            )
        )
    )


    (method (cycleDone)
        (if (--seconds)
            (super:cycleDone())
        )(else
            = cycles 1
            (self:motionCue())
        )
    )

)
