finished the bulk of game

This commit is contained in:
2024-07-14 21:32:41 -04:00
parent b3475b7530
commit af8bc4112c
110 changed files with 1876 additions and 1481 deletions

10
src/pc.h Normal file
View File

@ -0,0 +1,10 @@
#ifndef __PC_H__
#define __PC_H__
#include <memory>
#include "player.h"
void init_player(RNG *rng, std::unique_ptr<player_base> &pc,
const feature enabled_features, const enum race &r);
#endif