diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..41aee02 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/libraries/skunkworks.xml b/.idea/libraries/skunkworks.xml new file mode 100644 index 0000000..1dd35c0 --- /dev/null +++ b/.idea/libraries/skunkworks.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..07115cd --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..67370e0 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/fonts/ega-8x14.png b/fonts/ega-8x14.png new file mode 100644 index 0000000..5da0d32 Binary files /dev/null and b/fonts/ega-8x14.png differ diff --git a/fonts/thin-12x12.png b/fonts/thin-12x12.png new file mode 100644 index 0000000..5b3c386 Binary files /dev/null and b/fonts/thin-12x12.png differ diff --git a/fonts/thin-6x12.png b/fonts/thin-6x12.png new file mode 100644 index 0000000..6521b92 Binary files /dev/null and b/fonts/thin-6x12.png differ diff --git a/skunkgame.iml b/skunkgame.iml new file mode 100644 index 0000000..8c8be27 --- /dev/null +++ b/skunkgame.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/com/danitheskunk/skunkgame/SkunkGame.java b/src/com/danitheskunk/skunkgame/SkunkGame.java new file mode 100644 index 0000000..9158af5 --- /dev/null +++ b/src/com/danitheskunk/skunkgame/SkunkGame.java @@ -0,0 +1,15 @@ +package com.danitheskunk.skunkgame; + +import com.danitheskunk.skunkworks.BaseGame; +import com.danitheskunk.skunkworks.Vec2i; + +public class SkunkGame extends BaseGame { + public SkunkGame() { + super(new Vec2i(960, 540), "SkunkGame v0.0.0"); + } + + public static void main(String[] args) { + System.out.println("Hello world <3"); + new SkunkGame().run(); + } +}