- refactored
- integrated stirrer
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
import abc
|
||||
from utils.value import AttributeChange
|
||||
|
||||
|
||||
class AStirrer:
|
||||
@abc.abstractmethod
|
||||
def name(self):
|
||||
return ""
|
||||
|
||||
class AStirrer(AttributeChange):
|
||||
def __init__(self, dt):
|
||||
AttributeChange.__init__(self)
|
||||
self.dt = dt
|
||||
self.speed = 0
|
||||
self.cycleTime = 1
|
||||
|
||||
Reference in New Issue
Block a user