2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-09 02:27:43 +00:00

Adjust runtime directory layout

This commit is contained in:
Jack Andersen
2016-04-16 13:48:29 -10:00
parent 042030934b
commit 7afdc556fd
30 changed files with 68 additions and 16 deletions

View File

@@ -0,0 +1,24 @@
#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__