Stardew_Valley_Mods/GeneralMods/MapEvents/Framework/Delegates.cs

12 lines
266 B
C#
Raw Normal View History

using System.Collections.Generic;
2018-02-24 05:55:51 +08:00
namespace EventSystem.Framework
{
2018-02-24 05:55:51 +08:00
public class Delegates
{
public delegate void voidDel();
public delegate void strDel(string s);
public delegate void paramFunction(List<object> parameters);
}
}