metaforce/Runtime/Particle/CParticleSwooshDataFactory.hpp

27 lines
842 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CPARTICLESWOOSHDATAFACTORY_HPP__
#define __URDE_CPARTICLESWOOSHDATAFACTORY_HPP__
2016-02-10 22:54:47 +00:00
#include "RetroTypes.hpp"
2016-03-31 00:38:03 +00:00
#include "CFactoryMgr.hpp"
2016-02-10 22:54:47 +00:00
#include "IObj.hpp"
#include "CToken.hpp"
#include "IOStreams.hpp"
2016-03-04 23:04:53 +00:00
namespace urde
2016-02-10 22:54:47 +00:00
{
class CSwooshDescription;
class CSimplePool;
class CParticleSwooshDataFactory
{
2016-02-11 02:39:08 +00:00
static CSwooshDescription* CreateGeneratorDescription(CInputStream& in, CSimplePool* resPool);
2016-02-10 22:54:47 +00:00
static bool CreateWPSM(CSwooshDescription* desc, CInputStream& in, CSimplePool* resPool);
2016-02-13 08:23:17 +00:00
public:
static CSwooshDescription* GetGeneratorDesc(CInputStream& in, CSimplePool* resPool);
2016-02-10 22:54:47 +00:00
};
2017-02-13 21:29:00 +00:00
CFactoryFnReturn FParticleSwooshDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms,
CObjectReference*);
2016-02-10 22:54:47 +00:00
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CPARTICLESWOOSHDATAFACTORY_HPP__