Skip to content

Commit

Permalink
Empty project
Browse files Browse the repository at this point in the history
  • Loading branch information
Shepardeon committed May 21, 2020
1 parent 0e7431f commit 7dd71a8
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
5 changes: 5 additions & 0 deletions res/templates/emptyProject/conf.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function love.conf(p_conf)
p_conf.window.title = "New LvGame"
p_conf.window.width = 1024
p_conf.window.height = 576
end
11 changes: 11 additions & 0 deletions res/templates/emptyProject/main.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
function love.load()

end

function love.update(dt)

end

function love.draw()
love.graphics.print("Hello World!", love.graphics.getWidth()/2, love.graphics.getHeight()/2)
end
7 changes: 7 additions & 0 deletions src/com/shep/editor/Main.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
package com.shep.editor;

public class Main {
public static void main(String[] args) {
System.out.println("Hello World");
}
}

0 comments on commit 7dd71a8

Please sign in to comment.