public TilesCategorySDKModule(UODataManager install) { DataManager = install; Factories = new List <Factory>(); Supp = new SuppInfo(install); Supp.Populate(); Walls = new Walls(install); Misc = new Misc(install); Roofs = new Roofs(install); Floors = new Floors(install); Factories.Add(Walls); Factories.Add(Misc); Factories.Add(Roofs); Factories.Add(Floors); Categories = new ObservableCollection <ObservableCollection <TileCategory> >(); CheckFromTxt = true; _listTmpStyle = new ObservableCollection <TileStyle>(); _listTmpTile = new ObservableCollection <Tile>(); }
public TilesCategorySDKModule(InstallLocation install) { Install = install; Factories = new List <Factory>(); Supp = new SuppInfo(install); Supp.Populate(); Walls = new Walls(install); Misc = new Misc(install); Roofs = new Roofs(install); Floors = new Floors(install); Factories.Add(Walls); Factories.Add(Misc); Factories.Add(Roofs); Factories.Add(Floors); Categories = new List <IList <TileCategory> >(); TileData = new TileData(install); CheckFromTxt = true; TmpStyleList = new List <TileStyle>(); TmpTileList = new List <Tile>(); }