Rushwind13 / JMoria

My from-scratch implementation of a Roguelike game that will be an homage to IMoria
4 stars 4 forks source link

Remove external library calls from game code #93

Closed Rushwind13 closed 3 days ago

Rushwind13 commented 5 days ago

Constants.h has dependencies on both stdio and cmath The cmath is for log2, log base 2, which is stupid because it’s all >> stuff The stdio is for strcmp, can do it with *c.

Printf is too rough, but the idea is to build the game from the ground up in C++, only use libraries as necessary (os level rendering and keyboard I/o)

Rushwind13 commented 3 days ago

https://github.com/Rushwind13/JMoria/pull/102