2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-14 09:51:20 +00:00
metaforce/Runtime/World/CEnvFxManager.hpp

31 lines
350 B
C++

#ifndef __URDE_CENVFXMANAGER_HPP__
#define __URDE_CENVFXMANAGER_HPP__
namespace urde
{
class CStateManager;
enum class EEnvFxType
{
None,
Rain,
Snow
};
enum class EPhazonType
{
None,
Blue,
Orange
};
class CEnvFxManager
{
public:
void AsyncLoadResources(CStateManager& mgr);
};
}
#endif // __URDE_CENVFXMANAGER_HPP__