mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 06:27:43 +00:00
More factory stubs
This commit is contained in:
@@ -1,4 +1,25 @@
|
||||
#ifndef __RETRO_CDECALDATAFACTORY_HPP__
|
||||
#define __RETRO_CDECALDATAFACTORY_HPP__
|
||||
|
||||
#include "RetroTypes.hpp"
|
||||
#include "IObj.hpp"
|
||||
#include "CToken.hpp"
|
||||
#include "IOStreams.hpp"
|
||||
|
||||
|
||||
namespace Retro
|
||||
{
|
||||
class CDecalDescription;
|
||||
class CSimplePool;
|
||||
|
||||
class CDecalDataFactory
|
||||
{
|
||||
public:
|
||||
static CDecalDescription* GetGeneratorDesc(CInputStream& in,CSimplePool* resPool);
|
||||
static CDecalDescription* CreateGeneratorDescription(CInputStream& in, CSimplePool* resPool);
|
||||
static bool CreateDPSM(CDecalDescription* desc,CInputStream& in,CSimplePool* resPool);
|
||||
};
|
||||
|
||||
std::unique_ptr<IObj> FDealDataFactory(const SObjectTag& tag, CInputStream& in, const CVParamTransfer& vparms);
|
||||
}
|
||||
#endif // __RETRO_CDECALDATAFACTORY_HPP__
|
||||
|
||||
Reference in New Issue
Block a user