Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tulioabreu/game-project
This is a game project where I'm going to use my spare time for building it.
https://github.com/tulioabreu/game-project
Last synced: 4 days ago
JSON representation
This is a game project where I'm going to use my spare time for building it.
- Host: GitHub
- URL: https://github.com/tulioabreu/game-project
- Owner: TulioAbreu
- License: mit
- Created: 2020-02-22T13:29:24.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-18T17:04:11.000Z (over 4 years ago)
- Last Synced: 2024-11-15T23:14:20.667Z (2 months ago)
- Language: C++
- Size: 790 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Game-Project
This is a 2D game project which I'm trying to build with my spare time. It's basically a personal challenge for maintain a bigger codebase without getting lost and try to learn a little on how games are made.![](https://user-images.githubusercontent.com/33965580/94323903-e19e7d80-ff6d-11ea-83a0-02ad2583d464.png)
Yes, this is what it currently looks like, 3 sprites, its still very simple. :)
# Getting started
On Debian based distros it will be easier to setup this project, you will just need to install some dependencies:
```console
sudo apt install cmake liblua5.1-dev libsfml-dev
git clone https://github.com/TulioAbreu/game-project
cd game-project
mkdir build
cd build
cmake ..
make
./gameProject
```IMPORTANT: You want to make sure `sudo apt install libsfml-dev` is installing SFML 2.5.1 or higher.
I tried to run it on my Windows machine, but it was kinda annoying/complex. If you want to contribute with an easier Windows build I'll gladly accept :)