Instructions
Introduction
Code Example
// Calls the EndGame method in 10 seconds:
var delegateInstruction = new DelegateInstruction(
() => EndGame(),
TimeManager.CurrentTime + 10);
InstructionManager.Instructions.Add(delegateInstruction);Execution Details
Common Usage
Clearing all Instructions
Last updated
Was this helpful?