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

3
.gitignore vendored
View file

@ -1 +1,2 @@
.env
.env
build/

View file

@ -1,3 +1,4 @@
LOVE2D_EXE=C:/Program Files/LOVE/love.exe
DOSBOX_X_EXE=C:/DOSBox-X/dosbox-x.exe
DOSBOX_X_CPU=pentium_ii
DOSBOX_X_CPU=pentium_ii
GAME_NAME=example

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