Files
PyTaiko/libs/texture.py
2025-07-30 12:54:12 -04:00

11 lines
211 B
Python

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))