WORK IN PROGRESS

TODO: implement random level generation
moved exclude from list to position.h
distinguished level and map
This commit is contained in:
2024-07-12 00:16:08 -04:00
parent c68330b3e3
commit b3300b8e7c
13 changed files with 268 additions and 113 deletions

14
src/gold.h Normal file
View File

@ -0,0 +1,14 @@
#ifndef __GOLD_H__
#define __GOLD_H__
#include <vector>
#include "position.h"
struct gold {
int amount;
position pos;
};
typedef std::vector<gold> gold_list;
#endif