This commit is contained in:
Иван Кузьменко 2025-09-06 21:18:01 +03:00
commit 6ff877095d
4 changed files with 6 additions and 4 deletions

View file

@ -1,4 +1,4 @@
local platform = {}
local platform = { isNative = false }
function platform.init()
-- TODO: NOOP

View file

@ -1,4 +1,4 @@
local platform = { mouse = {} }
local platform = { isNative = true, mouse = {} }
local screenWidth = 320
local screenHeight = 200