2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 03:07:41 +00:00

DistanceFog imps

This commit is contained in:
2016-08-08 13:55:58 -07:00
parent 2d73c8226c
commit 30bdf02b0e
4 changed files with 84 additions and 1 deletions

View File

@@ -0,0 +1,29 @@
#ifndef __URDE_CSCRIPTDISTANCEFOG_HPP__
#define __URDE_CSCRIPTDISTANCEFOG_HPP__
#include "Graphics/CGraphics.hpp"
#include "CEntity.hpp"
namespace urde
{
class CScriptDistanceFog : public CEntity
{
ERglFogMode x34_mode;
zeus::CColor x38_col;
zeus::CVector2f x3c_;
float x44_;
zeus::CVector2f x48_;
float x50_;
float x54_;
float x58_;
float x5c_;
bool x60_;
bool x61_;
public:
CScriptDistanceFog(TUniqueId, const std::string&, const CEntityInfo&, const ERglFogMode&,
const zeus::CColor&, const zeus::CVector2f&, float, const zeus::CVector2f&,
bool, bool, float, float, float, float);
};
}
#endif // __URDE_CSCRIPTDISTANCEFOG_HPP__