X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FTileType.hpp;h=c4eadcfc899a93eeb979f5a91638c8faec8c8e60;hb=bcf776b6d51aeb9147bde32da8dd0768b10db993;hp=58294df071e017d33367c5e29ead1ca21fffc23b;hpb=02d5571eef7630c38968af264a441aa43e802d0f;p=blobs.git diff --git a/src/world/TileType.hpp b/src/world/TileType.hpp index 58294df..c4eadcf 100644 --- a/src/world/TileType.hpp +++ b/src/world/TileType.hpp @@ -2,6 +2,7 @@ #define BLOBS_WORLD_TILETYPE_HPP_ #include +#include namespace blobs { @@ -15,6 +16,12 @@ struct TileType { int id; int texture; + struct Yield { + int resource; + double ubiquity; + }; + std::vector resources; + }; }