import { Timers } from "./examples/common/timers.js" const timers = new Timers() initWindow(640, 480, "Javascript Tests") const pos = new Vector2(getScreenWidth()/2,getScreenHeight()/2) const radius = 100 timers.setTimeout(() => pos.x += 200, 2000) while(!windowShouldClose()){ timers.update(getFrameTime()) beginDrawing() clearBackground(RAYWHITE) drawCircle(pos.x,pos.y, radius, LIME) endDrawing() } closeWindow()