EuSigil Released!

new topic     » topic index » view thread      » older message » newer message

Hello all,

I have made a new wrapper. This is a wrapper for the Sigil library. This is a multimedia library similar to SDL. However it is much more bare-bones. Allowing for the making of small games or prototyping.

You can view it at my Github: https://github.com/gAndy50/EuSigil

NOTE: This library has the 32-bit DLL included in the github. I have not tested 64-bit or other systems besides Windows.

 
 --Simple Window 
without type_check 
 
include std/machine.e 
include EuSigil.ew 
 
slWindow(640,480,"Simple Window - Click 'X' or ESC to close",0) 
 
while not slShouldClose()  do 
  if slGetKey(SL_KEY_ESCAPE) = 1 then 
  	 slClose() 
  end if 
	slRender() 
end while 
 
slClose() 
 

Now if only Github had syntax coloring for Euphoria.

new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu