Jump to content

Sigil Wrapper


LeftyGuitar
 Share

Recommended Posts

Hello all,

I have a made a wrapp for Sigil in AutoIt. It is a very simple library that can be used for prototyping or making small games. You can get it from my github. Wrapper

Here is a simple example:

 

#include <Sigil.au3>

Local $w = 640, $h = 480
Local $true = 1, $false = 0

slWindow($w,$h,"Sigil Window",$false)

While Not slShouldClose()

   slRender()
WEnd

slClose()

 

Note you will need the slWindow() function as the DLLOpen command is called inside this command.  You will also need the sigil.DLL, glew32.dll, openal32.dll and wrap_oal.dll in order to use Sigil.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...