using System; using System.Collections.Generic; using System.Text; namespace OpenRa { // Put globally-useful delegate types here, particularly if // they are generic. public delegate T Provider(); public delegate T Provider( U u ); public delegate T Provider( U u, V v ); public delegate void Action(); }