forked from platypush/platypush
14 lines
233 B
Python
14 lines
233 B
Python
from platypush.message.event import Event
|
|
|
|
|
|
class WiimoteEvent(Event):
|
|
"""
|
|
Event triggered upon Wiimote event
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
|
# vim:sw=4:ts=4:et:
|
|
|