https://github.com/daid/librouge-bracket-tutorial
https://github.com/daid/librouge-bracket-tutorial
Last synced: 19 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/daid/librouge-bracket-tutorial
- Owner: daid
- Created: 2023-02-27T17:15:55.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2023-02-28T22:15:34.000Z (about 3 years ago)
- Last Synced: 2026-01-26T13:47:28.140Z (4 months ago)
- Language: C++
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello
This repo implements the https://bfnightly.bracketproductions.com/rustbook/ tutorial chapters. But then in C++ based on [librouge](https://github.com/daid/librouge), and OOP instead of ECS.
# Why C++?
Because I can, and I want.
# Why OOP instead of ECS?
Because to show that it is also an option. ECS works great, but I find OOP quicker to build small scale stuff. If you are going for a high complexity roguelike, you are better off with ECS, and use entt for example.
I might do these in ECS as well as OOP at some point, just to show the differences.