- got rid of FileSystem::GetFileData.

Using FMemFile is better in all these places.
This commit is contained in:
Christoph Oelckers 2023-08-19 16:49:07 +02:00
commit 5398045f7d
14 changed files with 50 additions and 84 deletions

View file

@ -117,6 +117,8 @@ enum ELumpNum
{
};
class FileSystem;
class FString
{
public:
@ -146,7 +148,7 @@ public:
FString (char head, const FString &tail);
// Other constructors
FString (ELumpNum); // Create from a lump
FString (FileSystem&, ELumpNum); // Create from a lump
~FString ();