Added new Classes and Module

-Added Weaponsclass
-Added Itemsclass
-Added Game Module to handle mechanics (later)
This commit is contained in:
Christian
2024-08-15 10:56:24 +02:00
parent 644c418b2d
commit 21d0149c06
3 changed files with 29 additions and 0 deletions

14
Game.py Normal file
View File

@@ -0,0 +1,14 @@
############################################################
## Implements all Gamemechanics here! ##
############################################################
import GameObject
import pygame
class Projectilehandler(object):
def __init__(self) -> None:
self.projectiles = list()
pass
def add_projectile(self, source):
pass