A 2D side-scrolling game built with Java. See the demo.
Make sure you have Java Development Kit (JDK) installed. You can compile the code using
javac -cp . -sourcepath src -d out src/*.javaAfter compiling, you can run the game using the following command:
java -cp out MainYou can also use the provided Makefile to compile and run the game. Just type:
make