diff options
Diffstat (limited to 'src/playerinfo.h')
-rw-r--r-- | src/playerinfo.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/playerinfo.h b/src/playerinfo.h index 925c5078..cbb6c748 100644 --- a/src/playerinfo.h +++ b/src/playerinfo.h @@ -49,16 +49,13 @@ struct Stat int expNeed; }; -using IntMap = std::map<int, int>; -using StatMap = std::map<int, Stat>; - /** * Backend for core player information. */ struct PlayerInfoBackend { - IntMap mAttributes; - StatMap mStats; + std::map<int, int> mAttributes; + std::map<int, Stat> mStats; }; class Equipment; |