Move collection retrieval in RetroFE class to helper method.

This commit is contained in:
emb
2015-01-01 16:38:44 -06:00
parent df3fe6f314
commit 7f0e4e4a38
2 changed files with 28 additions and 27 deletions

View File

@@ -9,6 +9,7 @@
#include "Video/IVideo.h"
#include <SDL2/SDL.h>
#include <list>
#include <vector>
class CollectionDatabase;
class Configuration;
@@ -48,7 +49,7 @@ private:
RETROFE_STATE ProcessUserInput();
void Update(float dt, bool scrollActive);
std::string GetLayout(std::string collectionName);
std::vector<Item *> *GetCollection(std::string collectionName);
Configuration &Config;
CollectionDatabase &CollectionDB;
UserInput Input;