UltimateZoneBuilder/Source/Core/Windows/IThingEditForm.cs

23 lines
441 B
C#

#region ================== Namespaces
using CodeImp.DoomBuilder.Map;
using System;
using System.Collections.Generic;
using System.Windows.Forms;
#endregion
namespace CodeImp.DoomBuilder.Windows
{
public interface IThingEditForm
{
//Events
event EventHandler OnValuesChanged;
event EventHandler Closed;
// Methods
void Setup(ICollection<Thing> things);
DialogResult ShowDialog(IWin32Window owner);
void Dispose();
}
}