split project into static and dynamic modules
This commit is contained in:
parent
55dca44b4a
commit
b6b9054d0d
28 changed files with 188 additions and 161 deletions
8
raylib/static/__init__.py
Normal file
8
raylib/static/__init__.py
Normal file
|
@ -0,0 +1,8 @@
|
|||
from ._raylib_cffi import ffi, lib as rl
|
||||
from _raylib_cffi.lib import *
|
||||
from raylib.colors import *
|
||||
from .helpers import *
|
||||
|
||||
|
||||
print("RAYLIB STATIC LOADED")
|
||||
|
Reference in a new issue