mirror of
https://github.com/buhman/nds.git
synced 2025-06-18 14:35:38 -04:00
8 lines
142 B
Python
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)
|