metaforce/Runtime/CWorldTransManager.hpp

25 lines
400 B
C++
Raw Normal View History

2016-02-13 09:02:47 +00:00
#ifndef __PSHAG_CWORLDTRANSMANAGER_HPP__
#define __PSHAG_CWORLDTRANSMANAGER_HPP__
2015-08-17 05:26:58 +00:00
2016-03-04 23:04:53 +00:00
namespace urde
{
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
};
}
2016-02-13 09:02:47 +00:00
#endif // __PSHAG_CWORLDTRANSMANAGER_HPP__