8 lines
190 B
Python
8 lines
190 B
Python
class Cycle:
|
|
def __init__(self, rate, reverse, low, high):
|
|
self.count = 0
|
|
self.rate = rate
|
|
self.reverse = reverse
|
|
self.low = low
|
|
self.high = high
|