OnTopReplica/OnTopReplica/Actions.cs
Lorenz Cuno Klopfenstein 5a000a10d3 Added Spanish (es-ES) translation (Thanks to Ra?l Morillo).
Some fixes to .designer code to load translated strings.
2010-10-29 00:24:39 +02:00

16 lines
330 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OnTopReplica {
public delegate void Action();
public delegate void Action<T1>(T1 arg1);
public delegate void Action<T1, T2>(T1 arg1, T2 arg2);
public delegate void Action<T1, T2, T3>(T1 arg1, T2 arg2, T3 arg3);
}