bombsquad-plugin-manager/plugins/utilities/abc_moddy_mod/abc_moddy_mod.py
2024-05-25 13:28:27 +00:00

16 lines
461 B
Python

# Tell the app which of its api versions we are written for. The app's
# meta-scanner will skip this file if this number doesn't match theirs.
# To learn more, see https://ballistica.net/wiki/meta-tag-system
# ba_meta require api 8
import babase
# Tell the app about our Plugin.
# ba_meta export plugin
class MyPlugin(babase.Plugin):
"""My awesome plugin."""
def on_app_running(self) -> None:
babase.screenmessage('Hello From MyPlugin!!!')