BGE Animations: Moving the BL_Action::IsDone() implementation from the header file to the source file.

This commit is contained in:
2011-06-29 02:45:08 +00:00
parent 3afe0e9c88
commit b85e0c3e85
2 changed files with 6 additions and 1 deletions

View File

@@ -189,6 +189,11 @@ void BL_Action::Stop()
m_done = true;
}
bool BL_Action::IsDone()
{
return m_done;
}
void BL_Action::InitIPO()
{
// Initialize the IPO

View File

@@ -88,7 +88,7 @@ public:
short ipo_flags,
float playback_speed);
void Stop();
bool IsDone() {return m_done;}
bool IsDone();
void Update(float curtime);
// Accessors