update raylib to 4.1-dev

This commit is contained in:
richard 2022-02-08 09:32:46 +00:00
parent 10d945ed28
commit f73c57c89c
9 changed files with 106 additions and 34 deletions

View file

@ -69,7 +69,7 @@ for name, attr in getmembers(rl):
if 'params' in json_object:
p = json_object['params']
#print("param_name: ", param_name, "i", i, "params: ",p,file=sys.stderr)
param_name = list(p)[i]
param_name = list(p)[i]['name']
param_type = ctype_to_python_type(arg.cname)
sig += f"{param_name}: {param_type},"