From bf8596a280f067bcfc0ff81bec0e94bb860230c8 Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Wed, 30 Mar 2016 08:49:38 -0400 Subject: [PATCH] Inv and textures --- include/{Quest.hpp => quest.hpp} | 10 ++-------- include/{Texture.hpp => texture.hpp} | 0 2 files changed, 2 insertions(+), 8 deletions(-) rename include/{Quest.hpp => quest.hpp} (85%) rename include/{Texture.hpp => texture.hpp} (100%) diff --git a/include/Quest.hpp b/include/quest.hpp similarity index 85% rename from include/Quest.hpp rename to include/quest.hpp index eaf9426..311aade 100644 --- a/include/Quest.hpp +++ b/include/quest.hpp @@ -8,9 +8,8 @@ #ifndef QUEST_H #define QUEST_H -#include +#include -#include #include /** @@ -20,16 +19,11 @@ #define DEBUG -struct need_t { - std::string name; - int n; -}; - typedef struct { std::string title; std::string desc; struct item_t reward; - std::vector need; + std::vector> need; } Quest; /** diff --git a/include/Texture.hpp b/include/texture.hpp similarity index 100% rename from include/Texture.hpp rename to include/texture.hpp -- 2.39.5