Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,41 @@
# ZombieV
2D top down zombie shooter game in C++ using SFML as graphics library and custom game engine (Ligths, Physics, Entity creation, etc...)

## Installation

##### Prerequisites

Before you install ZombieV, make sure you have the following prerequisites installed:

- CMake
- SFML
- Git

##### Instructions

1. **Clone the Repository**

```bash
git clone https://github.com/johnBuffer/ZombieV.git
cd ZombieV
```



2. **Build and Compile**
```bash
mkdir build
cd build
cmake ..
make
```

3. **Run Game**
If all is installed correctly, you should see an executable called ZombieV, all you need to do from here is run the executable
```bash
./ZombieV
```

## Example
![Zombie](https://github.com/johnBuffer/ZombieV/blob/master/img/illustration.png)

Expand Down