Add files

This commit is contained in:
Yonokid
2024-08-20 03:14:51 -04:00
parent beaec1d927
commit de293cc235
5 changed files with 1265 additions and 0 deletions

16
entry.py Normal file
View File

@@ -0,0 +1,16 @@
import pyray as ray
class EntryScreen:
def __init__(self, width, height):
self.width = width
self.height = height
self.texture_footer = ray.load_texture('Graphics\\lumendata\\entry\\entry_img00375.png')
def update(self):
if ray.is_key_pressed(ray.KeyboardKey.KEY_ENTER):
return "GAME"
return None
def draw(self):
ray.draw_texture(self.texture_footer, 0, self.height - 151, ray.WHITE)