Merge
This commit is contained in:
commit
6ff877095d
4 changed files with 6 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -1 +1,2 @@
|
||||||
.env
|
.env
|
||||||
|
build/
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
LOVE2D_EXE=C:/Program Files/LOVE/love.exe
|
LOVE2D_EXE=C:/Program Files/LOVE/love.exe
|
||||||
DOSBOX_X_EXE=C:/DOSBox-X/dosbox-x.exe
|
DOSBOX_X_EXE=C:/DOSBox-X/dosbox-x.exe
|
||||||
DOSBOX_X_CPU=pentium_ii
|
DOSBOX_X_CPU=pentium_ii
|
||||||
|
GAME_NAME=example
|
||||||
|
|
@ -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