mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-28 19:27:53 +00:00
18 lines
555 B
C++
18 lines
555 B
C++
#include "FortGenericDataStoreManagerComponent.h"
|
|
|
|
bool UFortGenericDataStoreManagerComponent::RemoveNamedStoreByType(const FName StoreName, const UClass* ClassType) {
|
|
return false;
|
|
}
|
|
|
|
UObject* UFortGenericDataStoreManagerComponent::GetNamedStoreByType(const FName StoreName, const UClass* ClassType) const {
|
|
return NULL;
|
|
}
|
|
|
|
UObject* UFortGenericDataStoreManagerComponent::AddNamedStoreByType(const FName StoreName, const UClass* ClassType) {
|
|
return NULL;
|
|
}
|
|
|
|
UFortGenericDataStoreManagerComponent::UFortGenericDataStoreManagerComponent() {
|
|
}
|
|
|