diff --git a/.gitignore b/.gitignore index a1c2a23..93e8677 100644 --- a/.gitignore +++ b/.gitignore @@ -19,5 +19,8 @@ *.tar.gz *.rar +.idea/ +target/ + # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..634eee5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,25 @@ + + + 4.0.0 + + org.opengame + editor + 0.0.1-SNAPSHOT + + + 11 + 11 + UTF-8 + + + + + org.opengame + engine + 0.0.2-SNAPSHOT + + + + \ No newline at end of file diff --git a/src/main/java/org/opengame/Main.java b/src/main/java/org/opengame/Main.java new file mode 100644 index 0000000..ba490c3 --- /dev/null +++ b/src/main/java/org/opengame/Main.java @@ -0,0 +1,7 @@ +package org.opengame; + +public class Main { + public static void main(String[] args) { + System.out.println("Hello world!"); + } +} \ No newline at end of file