A few minor updates for the new version of libstormgames.

This commit is contained in:
Storm Dragon
2025-03-14 18:16:14 -04:00
parent 2887023753
commit 45c06fe8f3
4 changed files with 6 additions and 2 deletions

View File

@@ -1,9 +1,10 @@
# -*- coding: utf-8 -*-
import pygame
import random
from libstormgames import *
from src.object import Object
from src.powerup import PowerUp
import pygame
class Enemy(Object):
def __init__(self, xRange, y, enemyType, sounds, level, **kwargs):

View File

@@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
import pygame
from libstormgames import *
from src.object import Object
from src.weapon import Weapon

View File

@@ -1,5 +1,7 @@
# -*- coding: utf-8 -*-
import pygame
import random
from libstormgames import *
from src.object import Object