mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
13 lines
210 B
C++
13 lines
210 B
C++
#ifndef _CANIMSOURCE
|
|
#define _CANIMSOURCE
|
|
|
|
class CInputStream;
|
|
class IObjectStore;
|
|
class CAnimSource {
|
|
public:
|
|
CAnimSource(CInputStream& in, IObjectStore& store);
|
|
~CAnimSource();
|
|
};
|
|
|
|
#endif // _CANIMSOURCE
|