Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1 KB

README.md

File metadata and controls

32 lines (24 loc) · 1 KB

2D Game

Create a 2D game where the goal is to push a box into a hole.

Project is in-progress.

Demo

2D Game Demo

Getting Started

  1. Clone the repository locally:
    git clone https://github.com/wangbertha/2DGame.git
    cd 2DGame
  2. Run game from Main file:
    • Option 1: Run src/main/Main.java from IDE user interface prompts. Ex. Visual Studio Code: Instructions to run the game For Visual Studio Code, install the Extension Pack for Java to access these prompts.
    • Option 2: Run from bin/main/Main using terminal:
      cd bin
      java main.Main

Roadmap

  • Functionality to push the box
  • Create reset button
  • Show message when level completion criteria are met
  • Animate box disappearing into hole
  • Create multiple levels
  • Develop player data storage
  • Deploy as web application