Add platform.isNative
This commit is contained in:
parent
1c112977bb
commit
eff0fe1b23
2 changed files with 2 additions and 2 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
local platform = {}
|
local platform = { isNative = false }
|
||||||
|
|
||||||
function platform.init()
|
function platform.init()
|
||||||
-- TODO: NOOP
|
-- TODO: NOOP
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
local platform = { mouse = {} }
|
local platform = { isNative = true, mouse = {} }
|
||||||
|
|
||||||
local screenWidth = 320
|
local screenWidth = 320
|
||||||
local screenHeight = 200
|
local screenHeight = 200
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue