Files
cc3k/src/gold.h
2024-07-13 14:22:06 -04:00

19 lines
256 B
C++

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