init with lua hello world example
This commit is contained in:
commit
9575795f2b
2 changed files with 11 additions and 0 deletions
8
README.md
Normal file
8
README.md
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
## Dev
|
||||||
|
|
||||||
|
Follow steps at [here](https://love2d.org/wiki/Getting_Started)
|
||||||
|
to download, install, and add Love 2d to path.
|
||||||
|
|
||||||
|
Once done games can be started with `love ./game_dir`
|
||||||
3
hello_world_lua/main.lua
Normal file
3
hello_world_lua/main.lua
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
function love.draw()
|
||||||
|
love.graphics.print("Hello World", 400, 300)
|
||||||
|
end
|
||||||
Loading…
Add table
Add a link
Reference in a new issue