Complete roguelike tutorial using modern C++ and libtcod

From RogueBasin
Revision as of 03:29, 31 October 2019 by Phyrexus (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Complete roguelike tutorial using modern C++ and libtcod


This tutorial is inspired by the previous C++ and libtcod tutorial, but is focused on using concepts and techniques in modern C++ (starting with C++11), as well as strong software architecture concepts.

View source here

Introduction

Why C++?

Changes and advantages of modern C++

Why libtcod?

Why the rewrite?