platypush/platypush/message/event/wiimote.py

33 lines
619 B
Python
Raw Normal View History

2018-12-01 17:56:31 +01:00
from platypush.message.event import Event
class WiimoteEvent(Event):
"""
Event triggered upon Wiimote event
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class WiimoteConnectionEvent(WiimoteEvent):
"""
Event triggered upon Wiimote connection
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class WiimoteDisconnectionEvent(WiimoteEvent):
"""
Event triggered upon Wiimote disconnection
"""
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
2018-12-01 17:56:31 +01:00
# vim:sw=4:ts=4:et: