mirror of
https://github.com/Project-Redacted/Gayme.git
synced 2025-05-24 11:54:53 +00:00
Path finding
This commit is contained in:
parent
b9f02c8268
commit
a32720cedb
30 changed files with 216 additions and 0 deletions
2
main.py
2
main.py
|
@ -7,6 +7,7 @@ from raycasting import *
|
|||
from object_renderer import *
|
||||
#from sprite_object import *
|
||||
from object_handler import *
|
||||
from pathfinding import *
|
||||
|
||||
class Game:
|
||||
def __init__(self):
|
||||
|
@ -25,6 +26,7 @@ class Game:
|
|||
#self.static_sprites = SpriteObject(self)
|
||||
#self.animated_sprites = AnimatedSprite(self)
|
||||
self.object_handler = ObjectHandler(self)
|
||||
self.pathfinding = PathFinding(self)
|
||||
|
||||
def update(self):
|
||||
self.player.update()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue