diff --git a/plugins/utilities.json b/plugins/utilities.json index c1a86a6..6ca1180 100644 --- a/plugins/utilities.json +++ b/plugins/utilities.json @@ -670,6 +670,20 @@ "md5sum": "24913c665d05c3056c8ba390fe88155e" } } + }, + "hello_api_8": { + "description": "I shouldn't be visible to API 7 game clients", + "external_url": "", + "authors": [ + { + "name": "Rikko", + "email": "rikkolovescats@proton.me", + "discord": "Rikko#7383" + } + ], + "versions": { + "1.0.0": null + } } } -} \ No newline at end of file +} diff --git a/plugins/utilities/hello_api_8.py b/plugins/utilities/hello_api_8.py new file mode 100644 index 0000000..7ccac78 --- /dev/null +++ b/plugins/utilities/hello_api_8.py @@ -0,0 +1,7 @@ +# ba_meta require api 8 +import ba + +# ba_meta export plugin +class Main(ba.Plugin): + def on_app_running(self): + ba.screenmessage("Wohoo! I'm an API 8 plugin!")