Skip to content

Commit

Permalink
Merge pull request #15 from em-eight/stuff
Browse files Browse the repository at this point in the history
ResourceManager: globe load functions
  • Loading branch information
vabold authored Jul 4, 2022
2 parents 3fae14b + 126a151 commit a036840
Show file tree
Hide file tree
Showing 3 changed files with 116 additions and 301 deletions.
9 changes: 5 additions & 4 deletions source/egg/core/eggStreamDecomp.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ namespace EGG {
//!
class StreamDecomp {
public:
virtual bool init(void* dst, u32 maxCompressedSize) = 0;
virtual bool decomp(const void* src, u32 len) = 0;
virtual u32 getHeaderSize() = 0;
virtual u32 getUncompressedSize(const void* src) = 0;
virtual bool init(void* dst, u32 maxCompressedSize);
virtual bool decomp(const void* src, u32 len);
virtual u32 getHeaderSize();
virtual u32 getUncompressedSize(const void* src);
void foo();
};

class LZStreamDecomp : public StreamDecomp {
Expand Down
Loading

0 comments on commit a036840

Please sign in to comment.