fix dynamic to import exactly the same as static
This commit is contained in:
parent
192fca8622
commit
316f0bb1e4
4 changed files with 10 additions and 54 deletions
|
@ -24,6 +24,7 @@ import pathlib
|
|||
import platform
|
||||
from .version import __version__
|
||||
|
||||
|
||||
MODULE = pathlib.Path(__file__).parent
|
||||
|
||||
def raylib_library_path():
|
||||
|
@ -56,3 +57,5 @@ try:
|
|||
print('LOADED DYNAMICALLY SHARED LIB {} {}'.format(__version__, raylib_fname))
|
||||
except Exception as e:
|
||||
print(e)
|
||||
|
||||
from .pyray import PyRay
|
Reference in a new issue