mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 05:07:43 +00:00
More factory stubs
This commit is contained in:
24
Runtime/Particle/CParticleSwooshDataFactory.hpp
Normal file
24
Runtime/Particle/CParticleSwooshDataFactory.hpp
Normal file
@@ -0,0 +1,24 @@
|
||||
#ifndef __RETRO_CPARTICLESWOOSHDATAFACTORY_HPP__
|
||||
#define __RETRO_CPARTICLESWOOSHDATAFACTORY_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "IObj.hpp"
|
||||
#include "CToken.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CSwooshDescription;
|
||||
class CSimplePool;
|
||||
class CParticleSwooshDataFactory
|
||||
{
|
||||
public:
|
||||
static CSwooshDescription* GetGeneratorDesc(CInputStream& in, CSimplePool* resPool);
|
||||
static CSwooshDescription* CreateGeneratorDescription(CInputStream& resPool, CSimplePool* resPool);
|
||||
static bool CreateWPSM(CSwooshDescription* desc, CInputStream& in, CSimplePool* resPool);
|
||||
};
|
||||
|
||||
std::unique_ptr<IObj> FParticleSwooshDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms);
|
||||
}
|
||||
|
||||
#endif // __RETRO_CPARTICLESWOOSHDATAFACTORY_HPP__
|
||||
Reference in New Issue
Block a user