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
- Host: GitHub
- URL: https://github.com/siddeshwarnavink/therunner
- Owner: siddeshwarnavink
- Created: 2024-03-21T12:19:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-22T12:08:05.000Z (about 1 year ago)
- Last Synced: 2025-01-20T05:10:25.477Z (5 months ago)
- Language: C++
- Size: 18.8 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.

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
```