Initial commit

This commit is contained in:
Иван Кузьменко 2025-09-01 02:25:40 +03:00
commit ee4762673a
14 changed files with 410 additions and 0 deletions

15
game/platform/dos.lua Normal file
View file

@ -0,0 +1,15 @@
local platform = {}
function platform.init()
-- TODO: NOOP
end
function platform.drawStart()
-- TODO: NOOP
end
function platform.drawEnd()
-- TODO: NOOP
end
return platform