https://github.com/liraymond04/holo-rpg
https://github.com/liraymond04/holo-rpg
3d-graphics c-plus-plus cpp game-development olc olcpixelgameengine pge rendering-3d-graphics rendering-engine
Last synced: 28 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/liraymond04/holo-rpg
- Owner: liraymond04
- License: other
- Created: 2022-07-15T21:22:42.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-23T06:30:00.000Z (over 3 years ago)
- Last Synced: 2025-10-04T16:48:05.061Z (8 months ago)
- Topics: 3d-graphics, c-plus-plus, cpp, game-development, olc, olcpixelgameengine, pge, rendering-3d-graphics, rendering-engine
- Language: C
- Homepage:
- Size: 6.95 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Holo::RPG
Project using javidx9's [olcPixelGameEngine](https://github.com/OneLoneCoder/olcPixelGameEngine) for practice with game design patterns and game development
## Building
Building is based on Moros1138's [pge-template-project](https://github.com/Moros1138/pge-template-project) CMake files
### Arch Linux
Install the required packages with the following command
`sudo pacman -Sy base-devel cmake git libpng mesa`
Generate project makefiles with CMake
`cmake .`
And build the project
`make`
### Windows
Install a C++ compiler like [MinGW](https://sourceforge.net/projects/mingw/)
Generate project makefiles with CMake
`cmake . -G "MinGW Makefiles"`
And build the project
`mingw32-make`