Add Close() method to IBehaviour to allow behaviours to cleanup when removed or bot it disconnected.

In this case, it is used to turn off jump when physics testing behaviour is removed.
This commit is contained in:
Justin Clark-Casey (justincc)
2013-09-03 19:33:17 +01:00
parent 1a2627031d
commit 3dbe7313d1
4 changed files with 30 additions and 1 deletions

View File

@@ -50,5 +50,7 @@ namespace pCampBot
{
Bot = bot;
}
public virtual void Close() {}
}
}