planetis-m / naylib

Yet another raylib Nim wrapper
MIT License
233 stars 10 forks source link

Module alias not working properly #138

Closed X-Ninja-dev closed 1 month ago

X-Ninja-dev commented 1 month ago

import raylib as rl

Does nothing. I still have raylib available without the module prefix.

Is there a way I can make raylib inaccessible.

planetis-m commented 1 month ago

yes, use: from raylib as rl import nil

X-Ninja-dev commented 1 month ago

Thanks, that works