Files
prime/include/Kyoto/Particles/CParticleSwooshDataFactory.hpp
Phillip Stephens 91e1d0fc94 Match and link CAnimationSet
CCredits fixes
Add proper constructor CInputStream to rstl::pair
CParticleSwooshDataFactory matches
2026-01-30 10:02:47 -08:00

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