namespace Sandbox;
public partial class GameObject
{
///
/// Post event to a specific GameObject (and its descendants by default - you can specify a to control this)
///
public virtual void RunEvent( Action action, FindMode find = FindMode.EnabledInSelfAndDescendants )
{
Components.Execute( action, find );
}
}