diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..6a3417b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/out/ 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..64cda0c --- /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..35eb1dd --- /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/skunkwrite.iml b/skunkwrite.iml new file mode 100644 index 0000000..8c8be27 --- /dev/null +++ b/skunkwrite.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/com/danitheskunk/skunkwrite/Skunkwrite.java b/src/com/danitheskunk/skunkwrite/Skunkwrite.java new file mode 100644 index 0000000..2b4c9fc --- /dev/null +++ b/src/com/danitheskunk/skunkwrite/Skunkwrite.java @@ -0,0 +1,14 @@ +package com.danitheskunk.skunkwrite; + +import com.danitheskunk.skunkworks.BaseGame; +import com.danitheskunk.skunkworks.Vec2i; + +public class Skunkwrite extends BaseGame { + public Skunkwrite() { + super(new Vec2i(2560, 1440), "Skunk Write v0.0"); + } + + public static void main(String[] args) { + new Skunkwrite().run(); + } +}