12 lines
218 B
C#
12 lines
218 B
C#
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<T>();
|
|
}
|