11 lines
248 B
C++
11 lines
248 B
C++
|
|
||
|
#include "RetrievedUserData.hpp"
|
||
|
#include "UserDataStorage.hpp"
|
||
|
|
||
|
Porygon::UserData::UserData * Porygon::UserData::RetrievedUserData::Get() {
|
||
|
if (_ud == nullptr){
|
||
|
_ud = UserDataStorage::GetUserDataTypeRaw(_key);
|
||
|
}
|
||
|
return _ud;
|
||
|
}
|