Files
OpenRA/OpenRa.DataStructures/Delegates.cs
(no author) ac87f06ef1 hax
git-svn-id: svn://svn.ijw.co.nz/svn/OpenRa@1331 993157c7-ee19-0410-b2c4-bb4e9862e678
2007-07-23 16:03:09 +00:00

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>();
}