mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-05-04 17:29:24 -05:00
19 lines
384 B
C++
19 lines
384 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
#include <SWA/Inspire/InspireTextureOverlayInfo.h>
|
|
|
|
namespace SWA::Inspire
|
|
{
|
|
class CScene;
|
|
|
|
class CTextureOverlay
|
|
{
|
|
public:
|
|
xpointer<void> m_pVftable;
|
|
boost::shared_ptr<CTextureOverlayInfo> m_spInfo;
|
|
xpointer<CScene> m_pScene;
|
|
boost::shared_ptr<Hedgehog::Mirage::CTextureData> m_spTextureData;
|
|
};
|
|
}
|