overdev / raylib-py

A Python binding for the great C library raylib.
Other
185 stars 20 forks source link

Binding tool #9

Closed supreme-core closed 5 years ago

supreme-core commented 5 years ago

Hi,

Out of curiosity, what binding tool did you use to create your binding ? I am looking at pybind11 right now.

overdev commented 5 years ago

Hi, @supreme-core.

I did it the hard way. :laughing: In fact, I didn't used a tool, and didn't typed everything also. I copied the raylib.h and used the Search & Replace functionality of my editors of choice (Sublime Text and PyCharm) to the best of my ability, then I made some tweaks here and there, added some helper functions, classes etc.

This is my first successful binding, so I wanted to do it manually.