mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
16 lines
461 B
Python
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!!!')
|