mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
16 lines
344 B
C++
16 lines
344 B
C++
#ifndef _CFBSTREAMEDCOMPRESSION
|
|
#define _CFBSTREAMEDCOMPRESSION
|
|
|
|
class CInputStream;
|
|
class IObjectStore;
|
|
class CCharAnimTime;
|
|
class CFBStreamedCompression {
|
|
public:
|
|
CFBStreamedCompression(CInputStream& in, IObjectStore& store);
|
|
~CFBStreamedCompression();
|
|
|
|
CCharAnimTime GetAnimationDuration() const;
|
|
};
|
|
|
|
#endif // _CFBSTREAMEDCOMPRESSION
|