Add platform.isNative

This commit is contained in:
Иван Кузьменко 2025-09-04 06:40:29 +03:00
parent 1c112977bb
commit eff0fe1b23
2 changed files with 2 additions and 2 deletions

View file

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

View file

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