2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 14:31:22 +00:00
metaforce/Runtime/CWorldTransManager.hpp
2016-03-04 13:04:53 -10:00

25 lines
400 B
C++

#ifndef __PSHAG_CWORLDTRANSMANAGER_HPP__
#define __PSHAG_CWORLDTRANSMANAGER_HPP__
namespace urde
{
class CWorldTransManager
{
bool m_drawEnabled;
public:
void DrawEnabled() const;
void DrawDisabled() const;
void Draw() const
{
if (m_drawEnabled)
DrawEnabled();
else
DrawDisabled();
}
};
}
#endif // __PSHAG_CWORLDTRANSMANAGER_HPP__