mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2025-03-01 23:31:45 +00:00
14 lines
276 B
C#
14 lines
276 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Text;
|
|||
|
using CodeImp.DoomBuilder.Map;
|
|||
|
|
|||
|
namespace CodeImp.DoomBuilder.Windows
|
|||
|
{
|
|||
|
public interface ISectorEditForm
|
|||
|
{
|
|||
|
event EventHandler OnValuesChanged;
|
|||
|
ICollection<Sector> Selection { get; }
|
|||
|
}
|
|||
|
}
|