19 lines
256 B
C++
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
|