TweenGetter<T, U>

Delegate in Zigurous.Tweening

Declaration

public delegate U TweenGetter<T, U>(T target);

Description

A function delegate that gets the current value of a parameter from an object.

Type Parameters

TThe type of object to get the parameter from.
UThe type of the parameter.

Parameters

targetThe object to get the value from.

Returns

TThe current value of the parameter.