terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
|
Classes | |
class | Scheduler |
struct | TimerComparer |
Public Member Functions | |
Timer (TimerCallback callback, object state, int dueTime, int period) | |
Timer (TimerCallback callback, object state, TimeSpan dueTime, TimeSpan period) | |
bool | Change (int dueTime, int period) |
bool | Change (TimeSpan dueTime, TimeSpan period) |
void | Dispose () |
virtual ObjRef | CreateObjRef (Type requestedType) |
virtual object | InitializeLifetimeService () |
Package Functions | |
void | KeepRootedWhileScheduled () |
Properties | |
static Timer.Scheduler | scheduler [get] |
ServerIdentity | ObjectIdentity [get, set] |
Private Member Functions | |
void | Init (TimerCallback callback, object state, long dueTime, long period) |
bool | Change (long dueTime, long period, bool first) |
Static Private Member Functions | |
static long | GetTimeMonotonic () |
Private Attributes | |
TimerCallback | callback |
object | state |
long | due_time_ms |
long | period_ms |
long | next_run |
bool | disposed |
bool | is_dead |
bool | is_added |
object | _identity |