Moved some files around

This commit is contained in:
2026-02-17 10:59:21 -06:00
parent 71c1e56564
commit 8b49902bf6
18 changed files with 24 additions and 32 deletions

View File

@@ -187,17 +187,18 @@ function sceneRender()
if INPUT_POINTER then
mouseX = inputGetValue(INPUT_ACTION_POINTERX) * screenGetWidth()
mouseY = inputGetValue(INPUT_ACTION_POINTERY) * screenGetHeight()
-- Draw cursor
spriteBatchPush(
nil,
mouseX - 2, mouseY - 2,
mouseX + 2, mouseY + 2,
colorRed(),
0, 0,
1, 1
)
end
-- Draw cursor
spriteBatchPush(
nil,
mouseX - 2, mouseY - 2,
mouseX + 2, mouseY + 2,
colorRed(),
0, 0,
1, 1
)
textDraw(10, 10, "Hello World")