mirror of
https://github.com/PrimeDecomp/prime.git
synced 2026-07-12 18:18:56 -07:00
CCredits fixes Add proper constructor CInputStream to rstl::pair CParticleSwooshDataFactory matches
18 lines
693 B
C++
18 lines
693 B
C++
#ifndef _CPARTICLESWOOSHDATAFACTORY
|
|
#define _CPARTICLESWOOSHDATAFACTORY
|
|
#include "Kyoto/CFactoryFnReturn.hpp"
|
|
#include "Kyoto/Particles/CSwooshDescription.hpp"
|
|
|
|
class CInputStream;
|
|
class CSimplePool;
|
|
class CParticleSwooshDataFactory {
|
|
public:
|
|
static CSwooshDescription* GetGeneratorDesc(CInputStream& in, CSimplePool* pool);
|
|
static CSwooshDescription* CreateGeneratorDescription(CInputStream& in, CSimplePool* pool);
|
|
static bool CreateWPSM(CSwooshDescription* swoosh, CInputStream& in, CSimplePool* pool);
|
|
};
|
|
|
|
CFactoryFnReturn FParticleSwooshDataFactory(const SObjectTag& tag, CInputStream& in,
|
|
const CVParamTransfer& transfer);
|
|
#endif
|