pbettell
Member
- Joined
- Mar 14, 2010
- Messages
- 432
- Reaction score
- 16
Hi all,
Need some help understanding something within TreeSharp.
What is the difference between "ret =>" and "ctx =>" within a decorator.
I.E.
How is
different from
Thanks
pbettell AKA Ringo
Need some help understanding something within TreeSharp.
What is the difference between "ret =>" and "ctx =>" within a decorator.
I.E.
How is
Code:
new Decorator(ctx => RoutineManager.Current.PullBuffBehavior != null, RoutineManager.Current.PullBuffBehavior)
different from
Code:
new Decorator(ret => RoutineManager.Current.PullBuffBehavior != null, RoutineManager.Current.PullBuffBehavior)
Thanks
pbettell AKA Ringo