metaforce/Runtime/CWorldTransManager.hpp

25 lines
401 B
C++
Raw Normal View History

2015-08-17 05:26:58 +00:00
#ifndef __RETRO_CWORLDTRANSMANAGER_HPP__
#define __RETRO_CWORLDTRANSMANAGER_HPP__
namespace Retro
{
2015-08-17 05:26:58 +00:00
class CWorldTransManager
{
2015-08-20 02:52:07 +00:00
bool m_drawEnabled;
public:
void DrawEnabled() const;
void DrawDisabled() const;
void Draw() const
{
if (m_drawEnabled)
DrawEnabled();
else
DrawDisabled();
}
2015-08-17 05:26:58 +00:00
};
}
2015-08-17 05:26:58 +00:00
#endif // __RETRO_CWORLDTRANSMANAGER_HPP__