public class ClassA : BaseClass {
}
public abstract class BaseClass : MonoBehaviour {
void Awake()
{
var tweenPosition = GetComponent<TweenPosition>();
EventDelegate.Set(tweenPosition.onFinished, () => TestMethod() );
}
protected void TestMethod()
{
Debug.Log( "BaseClass TestMethod" );
}
}