mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-12-02 00:22:09 +00:00
13 lines
276 B
C#
13 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; }
|
|
}
|
|
}
|