Experimenting with SQL

This commit is contained in:
2016-04-22 18:14:07 +10:00
parent 754fb71850
commit ba295099f3
9 changed files with 186 additions and 14 deletions
+3
View File
@@ -24,6 +24,7 @@
//components
#include "character_defines.hpp"
#include "entity.hpp"
#include "inventory.hpp"
//std namespace
#include <string>
@@ -38,6 +39,7 @@ public:
int GetOwner();
std::string GetHandle();
std::string GetAvatar();
Inventory* GetInventory();
private:
friend class CharacterManager;
@@ -45,4 +47,5 @@ private:
int owner = -1;
std::string handle;
std::string avatar;
Inventory inventory;
};