mirror of
https://github.com/bombsquad-community/plugin-manager.git
synced 2025-10-08 14:54:36 +00:00
[ci] auto-format
This commit is contained in:
parent
605020ab93
commit
a13d50cfd3
1 changed files with 9 additions and 11 deletions
|
|
@ -1,7 +1,16 @@
|
||||||
# Released under the MIT License. See LICENSE for details.
|
# Released under the MIT License. See LICENSE for details.
|
||||||
# BY Stary_Agent
|
# BY Stary_Agent
|
||||||
"""Hockey game and support classes."""
|
"""Hockey game and support classes."""
|
||||||
|
from __future__ import annotations
|
||||||
plugman = dict(
|
plugman = dict(
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
import babase
|
||||||
|
import bauiv1 as bui
|
||||||
|
import bascenev1 as bs
|
||||||
|
from bascenev1lib.actor.playerspaz import PlayerSpaz
|
||||||
|
from bascenev1lib.actor.scoreboard import Scoreboard
|
||||||
|
from bascenev1lib.actor.powerupbox import PowerupBoxFactory
|
||||||
|
from bascenev1lib.gameutils import SharedObjects
|
||||||
plugin_name="soccer",
|
plugin_name="soccer",
|
||||||
description="Shoot the ball in left or right edge of the map to score",
|
description="Shoot the ball in left or right edge of the map to score",
|
||||||
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
external_url="https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||||
|
|
@ -11,17 +20,6 @@ plugman = dict(
|
||||||
|
|
||||||
# ba_meta require api 8
|
# ba_meta require api 8
|
||||||
# (see https://ballistica.net/wiki/meta-tag-system)
|
# (see https://ballistica.net/wiki/meta-tag-system)
|
||||||
from __future__ import annotations
|
|
||||||
|
|
||||||
from bascenev1lib.gameutils import SharedObjects
|
|
||||||
from bascenev1lib.actor.powerupbox import PowerupBoxFactory
|
|
||||||
from bascenev1lib.actor.scoreboard import Scoreboard
|
|
||||||
from bascenev1lib.actor.playerspaz import PlayerSpaz
|
|
||||||
import bascenev1 as bs
|
|
||||||
import bauiv1 as bui
|
|
||||||
import babase
|
|
||||||
from typing import TYPE_CHECKING
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue