Example #1
0
 public HexResource(int i, int j, int Type, Dase d, int roll, Game g1) : base(Type, d)
 {
     x            = i;
     y            = j;
     gl           = g1;
     d.EventRoll += GetResource;
     Roll_number  = roll;
     this.d       = d;
 }
Example #2
0
File: Hex.cs Project: AgokaS/Catan
 public Hex(int Type, Dase d)
 {
     d.EventRoll7 += RogeF;
     this.Roge     = false;
     this.Type     = Type;
 }