PicoPicoScript (picosc) is an indie game engine fueled by your dreams!
func setup() { var config = { title: "My Sample Game", width: 640, height: 480 }; return config; } func start() { myTexture = Engine.loadTexture({file: "apple.png"}); } func frame() { Engine.draw({ texture: myTexture x: Engine.mousePosX, y: Engine.mousePosY, }); }