nonworking dynamic bindings
This commit is contained in:
parent
2335c5275f
commit
790ff3fcf6
8 changed files with 119 additions and 31 deletions
5
raylib/helpers.py
Normal file
5
raylib/helpers.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from ._raylib_cffi import ffi
|
||||
|
||||
def Vector3(x, y, z):
|
||||
return ffi.new("struct Vector3 *", [x, y, z])[0]
|
||||
|
Reference in a new issue