An open API service indexing awesome lists of open source software.

https://github.com/siddeshwarnavink/therunner

A simple game developed using C++ and SFML
https://github.com/siddeshwarnavink/therunner

Last synced: 3 months ago
JSON representation

A simple game developed using C++ and SFML

Awesome Lists containing this project

README

        

# The Runner 🏃

A simple game of a person running made using C++ and [SFML](https://www.sfml-dev.org/). This game was developed to help understand the basic concepts of game engine.

![Game Preview](https://media.giphy.com/media/v1.Y2lkPTc5MGI3NjExbXZvNng3dDljZjlyYXRiNTI3YWo3emlrc2ZiOXA1ZWN6Y3UzZHhnNCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/ildeUSKeHmYAYc05AR/giphy-downsized-large.gif)
View preview at [GIPHY](https://giphy.com/gifs/ildeUSKeHmYAYc05AR)

This project involves the development of a basic game with the following key concepts:

- Game Loop and FPS Lock
- Animation with Sprite Sheet
- Basic Random Generation
- Progressive Difficulty Increase

## Get Started
Before you run the code. Setup PATH for SFML library. Use ``lib/windows`` if your running on windows.
```
export LD_LIBRARY_PATH=./lib/linux/
```

To run the game
```
make
```