Stuff

This commit is contained in:
2026-01-28 17:49:05 +01:00
parent 39ed75298f
commit 9cb7bcedf1
9 changed files with 5848 additions and 57 deletions

12
Sly3Callbacks.py Normal file
View File

@@ -0,0 +1,12 @@
from typing import TYPE_CHECKING
if TYPE_CHECKING:
from .Sly3Client import Sly3Context
async def init(ctx: "Sly3Context", ap_connected: bool):
"""Called when the player connects to the AP server or changes map"""
pass
async def update(ctx: "Sly3Context", ap_connected: bool):
"""Called continuously"""
pass