Example #1
0
 public Monster(string name, TypeEnum type, string image, int id, string info)
 {
     this.Name = name;
     this.Type = type;
     this.Image = image;
     this.ID = id;
     monsterAttackList = new MonsterAttckList();
     mmp = new MonsterMapPoint();
     mmp.DataContext = this;
     Info = info;
     PlayerMonster = false;
     this.ImageBackground = "http://www.intrawallpaper.com/static/images/abstract-mosaic-background.png";
 }
Example #2
0
 public Monster(string name, TypeEnum type, string image, int id, string info)
 {
     this.Name         = name;
     this.Type         = type;
     this.Image        = image;
     this.ID           = id;
     monsterAttackList = new MonsterAttckList();
     mmp                  = new MonsterMapPoint();
     mmp.DataContext      = this;
     Info                 = info;
     PlayerMonster        = false;
     this.ImageBackground = "http://www.intrawallpaper.com/static/images/abstract-mosaic-background.png";
 }