Skip to content

Commit

Permalink
testing out MDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Spuckwaffel committed Sep 17, 2023
1 parent f953116 commit 1b02127
Show file tree
Hide file tree
Showing 13 changed files with 639 additions and 22 deletions.
2 changes: 1 addition & 1 deletion UEDumper/Engine/Core/Core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ int EngineCore::getVectorIndexForPackageIndex(const int packageIndex)
return packageIndexes[packageIndex];
}

std::vector<std::string>& EngineCore::getAllUnknownTypes()
const std::vector<std::string>& EngineCore::getAllUnknownTypes()
{
//already checked? Well then dont do it again
if(unknownProperties.size() > 0)
Expand Down
5 changes: 2 additions & 3 deletions UEDumper/Engine/Core/Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,11 +223,10 @@ ENGINE_CORE EngineCore

/**
* \brief USE ONLY AFTER PACKAGE GENERATION!
* getInfoOfObject might return -1 if a type definition is not found. This function lists all
* types that were used in structs but were never defined. (e.g TArray or TMap)
* This function lists all types that were used in structs but were never defined. (e.g TArray or TMap)
* \return vector of all unknown types
*/
static std::vector<std::string>& getAllUnknownTypes();
static const std::vector<std::string>& getAllUnknownTypes();

/**
* \brief USE ONLY BEFORE PACKAGE GENERATION! Overrides a existing struct with user defined data.
Expand Down
Loading

0 comments on commit 1b02127

Please sign in to comment.