Public Member Functions | |
bool | operator< (const ScheduleEntry &other) const |
Public Attributes | |
HSQOBJECT | thread_ref |
weak reference to the squirrel vm object | |
float | wakeup_time |
time when the thread should be woken up |
Definition at line 40 of file time_scheduler.hpp.
bool scripting::TimeScheduler::ScheduleEntry::operator< | ( | const ScheduleEntry & | other | ) | const [inline] |
Definition at line 46 of file time_scheduler.hpp.
References wakeup_time.
00047 { 00048 // we need the smallest value on top 00049 return wakeup_time > other.wakeup_time; 00050 }
weak reference to the squirrel vm object
Definition at line 42 of file time_scheduler.hpp.
Referenced by scripting::TimeScheduler::schedule_thread().
time when the thread should be woken up
Definition at line 44 of file time_scheduler.hpp.
Referenced by operator<(), and scripting::TimeScheduler::schedule_thread().