Cellua is a fast cell based script-able graphics engine for grid based graphics
- Download the latest binary
- Add it to PATH
- Clone cellua project template
- Run Cellua in the directory
window=Window.NewWindow(800, "Demo")
scene=window.GetScene()
ran=Random.NewRandomBool()
forx=1, 799dofory=1, 799doifran.NextBoolean() thenscene.SetColor(x, y, 255, 0, 0, 255)
endendwindow.Clear()
window.Display()
endwhilewindow.IsOpen() dowindow.Clear()
window.Display()
end