2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-30 14:01:20 +00:00
metaforce/Runtime/World/CWorldTransManager.hpp
2016-04-16 13:48:29 -10:00

25 lines
397 B
C++

#ifndef __URDE_CWORLDTRANSMANAGER_HPP__
#define __URDE_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 // __URDE_CWORLDTRANSMANAGER_HPP__