Various refactorings to support ItemFilterPreview

This commit is contained in:
Ben Wallis
2016-01-31 10:51:53 +00:00
parent d159f0b262
commit 86dc03f4ff
49 changed files with 623 additions and 212 deletions

View File

@@ -3,8 +3,14 @@ using System.Collections.Generic;
namespace Filtration.ObjectModel
{
[Serializable]
public class SocketGroup : List<Socket>
{
private SocketGroup()
{
}
public SocketGroup(List<Socket> sockets, bool linked)
{
if (sockets.Count < 1 || sockets.Count > 6)