1
from cocos import actions
2
from cocos import audio
4
class PlayAction(actions.InstantAction):
12
def __deepcopy__(self, memo):
13
# A shallow copy should be enough because sound effects are immutable
14
# Also, we don't need to use the memo, because there can not be a cycle
15
return PlayAction(self.sound)