8 lines
269 B
Python
8 lines
269 B
Python
|
|
||
|
class Skill:
|
||
|
def __init__(self):
|
||
|
self.trigger_phrase = ""
|
||
|
|
||
|
def update_dashboard(self):
|
||
|
"""Call this function to update data for dashboard"""
|
||
|
pass #TODO: When implementing dashboard, have all skills inherit from this class and call update_dashboard when needed.
|