public _4chan() { wc = new WebClient(); Interface = new Interface(); Images = new Images(wc, Interface); Resto = new Resto(Interface, Images, wc, Board); wc.Proxy = null; }
public Resto(Interface Interface, Images Images, WebClient wc, String Board) { this.Interface = Interface; this.Images = Images; this.Board = Board; this.wc = wc; RestoList = new List<String>(); }
public Images(WebClient wc, Interface Interface) { this.wc = wc; this.Interface = Interface; }