Gosu Wrapper
- Posted by Icy_Viking in July
- 480 views
I have recently written a wrapper for the Gosu library. [https://www.libgosu.org/]
The basic window example works. Though I can't figure out why input or drawing to the screen doesn't work.
[https://www.file-upload.org/rm3imq56kj7x] - Gosu wrapper
EDIT: Added license
include std/ffi.e include gosu.e atom window = Gosu_Window_create(640,480,WF_WINDOWED,60) Gosu_Window_set_caption(window,"Simple Window Example") Gosu_Window_destroy(window)