mirror of
https://github.com/Relintai/gdnative_python.git
synced 2024-11-14 10:27:22 +01:00
19 lines
418 B
Cython
19 lines
418 B
Cython
from pandemonium.bindings cimport Object
|
|
|
|
|
|
cdef bint __pythonscript_verbose
|
|
|
|
|
|
cdef inline bint get_pythonscript_verbose():
|
|
return __pythonscript_verbose
|
|
|
|
|
|
cdef inline void set_pythonscript_verbose(bint status):
|
|
global __pythonscript_verbose
|
|
__pythonscript_verbose = status
|
|
|
|
|
|
cdef object get_exposed_class(str module_name)
|
|
cdef void set_exposed_class(object cls)
|
|
cdef void destroy_exposed_class(object cls)
|