initial commit

This commit is contained in:
Simo-Pekka Kerkelä 2019-02-07 23:20:58 +02:00
commit 3b5ca128ba
3 changed files with 50 additions and 0 deletions

44
.gitignore vendored Normal file
View file

@ -0,0 +1,44 @@
#### joe made this: http://goel.io/joe
#### lua ####
# Compiled Lua sources
luac.out
# luarocks build files
*.src.rock
*.zip
*.tar.gz
# Object files
*.o
*.os
*.ko
*.obj
*.elf
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.a
*.la
*.lo
*.def
*.exp
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

3
main.lua Normal file
View file

@ -0,0 +1,3 @@
function love.draw()
love.graphics.print("Hello World", 400, 300)
end

3
run_osx.sh Executable file
View file

@ -0,0 +1,3 @@
#!/usr/bin/env bash
cur_dir=$PWD
open -n -a love "$cur_dir"