Пример #1
0
 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 ();
 }
Пример #2
0
        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();
        }
Пример #3
0
 public bool VlozPentonimo(PentonimoModel pentonimo, uint x, uint y)
 {
 }
Пример #4
0
 public PentonimoView(PentonimoModel model)
 {
     this.model = model;
 }
Пример #5
0
 public bool VlozPentonimo(PentonimoModel pentonimo, uint x, uint y)
 {
 }
Пример #6
0
 public PentonimoView(PentonimoModel model)
 {
     this.model = model;
 }