New release of ZS Extension 1.2.1.2:
Thousands of new objects and features are added.
Just Check whole extension with SB-Prime IDE Extension Searcher.
the new release have different package for raylib x86 and x64 it is also not completed so if you want to test raylib the use appropriate architecture based raylib.dll or else only extension ZS.dll is required.
Raylib Example
One Thing to note is save the code and copy raylib.dll to that place where exe is as small basic does not copy it in feature i will use ILMerge to remove this trouble
Thousands of new objects and features are added.
Just Check whole extension with SB-Prime IDE Extension Searcher.
the new release have different package for raylib x86 and x64 it is also not completed so if you want to test raylib the use appropriate architecture based raylib.dll or else only extension ZS.dll is required.
Raylib Example
Code:
ZSRaylib.InitWindow(600, 600, "kill")
While (ZSNET.Not(ZSRaylib.WindowShouldClose))
ZSRaylib.BeginDrawing()
ZSRaylib.ClearBackground(LDColours.White)
ZSRS.DrawCircle(20,20,5,LDColours.Aqua)
ZSRaylib.EndDrawing()
EndWhile
ZSRaylib.CloseWindow()
ZS