2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-05-15 19:11:27 +00:00
metaforce/Runtime/CWorldTransManager.hpp

25 lines
401 B
C++

#ifndef __PSHAG_CWORLDTRANSMANAGER_HPP__
#define __PSHAG_CWORLDTRANSMANAGER_HPP__
namespace pshag
{
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__