#ifndef __GOLD_H__ #define __GOLD_H__ #include #include "constants.h" #include "position.h" #include "rng.h" struct gold { int amount; position pos; }; typedef std::vector gold_list; int rand_gold_pile(RNG *rng); #endif