mirror of
https://github.com/Yonokid/PyTaiko.git
synced 2026-02-04 11:40:13 +01:00
11 lines
211 B
Python
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))
|