A pixel art zombie survival game made with pure java using inbuilt libraries like JFrame and Graphics2D
Requires installation of java , JDK , JRE and the JVM
- all included in installation of the JDK
javac -d bin src\entity\*.java src\item\*.java src\main\*.java src\tile\*.java && java -cp "bin;resources" main.Mainjavac -d bin $(find src -name "*.java") && java -cp "bin:resources" main.Main