update dependencies

This commit is contained in:
Yonokid
2025-07-30 12:54:12 -04:00
parent b99a6510db
commit 27a5b0e26f
4 changed files with 10 additions and 36 deletions

10
libs/texture.py Normal file
View File

@@ -0,0 +1,10 @@
from pathlib import Path
import pyray as ray
class TextureWrapper:
def __init__(self):
pass
def load_texture(self, texture: Path) -> ray.Texture:
return ray.load_texture(str(texture))