(svn r23118) -Feature: [NoAI] Allow AIs to query the amount of remaining operations for the current tick

This commit is contained in:
rubidium
2011-11-04 23:20:14 +00:00
parent 02913f40b0
commit 65d0d19b16
10 changed files with 52 additions and 6 deletions

View File

@@ -553,3 +553,8 @@ bool Squirrel::CanSuspend()
{
return sq_can_suspend(this->vm);
}
SQInteger Squirrel::GetOpsTillSuspend()
{
return this->vm->_ops_till_suspend;
}