#pragma once #include #include "StatusT.h" struct NameT { std::string first; std::string last; std::string title; }; void PrintName(NameT name); void GetName(NameT & name); struct PlayerT { NameT name; int sanity; StatusT status; }; void PrintPlayer(PlayerT player); PlayerT GetPlayer(int & cthulhu);