Method | Description | |
---|---|---|
Begin ( SafeSharedObjects shared ) : void |
When the CPU starts the yield, it will call Begin to tell you the shared objects handle in case you need some information from it, and to let you get anything you like started up, like a timer for example.
|
|
IsFinished ( ) : bool |
Track whatever you feel like in this class to decide when the wait is over, but this is how you tell the CPU the wait is over. The CPU will call IsFinished() over and over to find out when it's time to start executing opcodes again.
|
public abstract Begin ( SafeSharedObjects shared ) : void | ||
shared | SafeSharedObjects | |
return | void |