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:
24
Runtime/World/CWorldTransManager.hpp
Normal file
24
Runtime/World/CWorldTransManager.hpp
Normal 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__
|
||||
Reference in New Issue
Block a user