nds/res/path.py
2024-09-05 10:39:56 -05:00

8 lines
142 B
Python

from os import path
def texture_path(s):
return path.join('..', 'texture', s)
def model_path(s):
return path.join('..', 'model', s)