2023-05-23 19:06:25 +02:00
|
|
|
# Public low-level APIs are exposed here
|
|
|
|
|
2023-06-02 11:42:53 +02:00
|
|
|
from pandemonium._hazmat cimport gdnative_api_struct
|
2023-06-02 11:31:19 +02:00
|
|
|
# Re-expose Pandemonium API with better names
|
2023-06-02 11:42:53 +02:00
|
|
|
from pandemonium._hazmat.gdapi cimport (
|
2023-05-23 19:06:25 +02:00
|
|
|
pythonscript_gdapi10 as gdapi10,
|
|
|
|
pythonscript_gdapi_ext_nativescript as gdapi_ext_nativescript,
|
|
|
|
pythonscript_gdapi_ext_pluginscript as gdapi_ext_pluginscript,
|
|
|
|
pythonscript_gdapi_ext_android as gdapi_ext_android,
|
|
|
|
)
|
2023-06-02 11:13:10 +02:00
|
|
|
from pandemonium._hazmat.conversion cimport (
|
2023-06-02 11:05:45 +02:00
|
|
|
pandemonium_string_to_pyobj,
|
|
|
|
pyobj_to_pandemonium_string,
|
|
|
|
pandemonium_variant_to_pyobj,
|
|
|
|
pyobj_to_pandemonium_variant,
|
2023-05-23 19:06:25 +02:00
|
|
|
)
|