9 lines
178 B
Odin
9 lines
178 B
Odin
#+build !js
|
|
package game
|
|
|
|
import "core:path/filepath"
|
|
|
|
path_abs :: proc(path: string, allocator := context.allocator) -> (string, bool) {
|
|
return filepath.abs(path, allocator)
|
|
}
|