2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-06-05 12:33:28 +00:00
metaforce/Runtime/MP1/CFaceplateDecoration.hpp
2019-01-28 22:28:35 -10:00

25 lines
488 B
C++

#pragma once
#include "RetroTypes.hpp"
#include "Graphics/Shaders/CTexturedQuadFilter.hpp"
namespace urde {
class CStateManager;
namespace MP1 {
class CFaceplateDecoration {
CAssetId x0_id;
TToken<CTexture> x4_tex;
bool xc_ready = false;
rstl::optional<CTexturedQuadFilter> m_texFilter;
public:
CFaceplateDecoration(CStateManager& stateMgr);
void Update(float dt, CStateManager& stateMgr);
void Draw(CStateManager& stateMgr);
};
} // namespace MP1
} // namespace urde