public Resursi()
 {
     vrednostGrama = 10;
     tipResursa    = VrstaResursa.Zlato;
     broj          = 100;
 }
 public Resursi(double vrednostResursa, VrstaResursa tipResursa, int broj)
 {
     this.vrednostGrama = vrednostResursa;
     this.tipResursa    = tipResursa;
     this.broj          = broj;
 }