Initial commit
This commit is contained in:
commit
ee4762673a
14 changed files with 410 additions and 0 deletions
6
game/platform/platform.lua
Normal file
6
game/platform/platform.lua
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
local os = love.system.getOS()
|
||||
if os == 'DOS' then
|
||||
return require 'platform.dos'
|
||||
else
|
||||
return require 'platform.native'
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue