mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-11 02:27:43 +00:00
various implementations
This commit is contained in:
@@ -6,6 +6,17 @@ namespace Retro
|
||||
|
||||
class CWorldTransManager
|
||||
{
|
||||
bool m_drawEnabled;
|
||||
public:
|
||||
void DrawEnabled() const;
|
||||
void DrawDisabled() const;
|
||||
void Draw() const
|
||||
{
|
||||
if (m_drawEnabled)
|
||||
DrawEnabled();
|
||||
else
|
||||
DrawDisabled();
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user