public static void Main(string[] args) { PentonimoModel ctverec = new PentonimoModel (2, 2); for (uint y = 0; y < 2; y++) { for (uint x = 0; x < 2; x++) { ctverec.NastavDilek (x, y); } } PentonimoView zobrazeni = new PentonimoView (ctverec); zobrazeni.Zobraz (); }
public static void Main(string[] args) { PentonimoModel ctverec = new PentonimoModel(2, 2); for (uint y = 0; y < 2; y++) { for (uint x = 0; x < 2; x++) { ctverec.NastavDilek(x, y); } } PentonimoView zobrazeni = new PentonimoView(ctverec); zobrazeni.Zobraz(); }
public bool VlozPentonimo(PentonimoModel pentonimo, uint x, uint y) { }
public PentonimoView(PentonimoModel model) { this.model = model; }