Ejemplo n.º 1
0
 public NPC()
 {
     _screen     = new ProjectX_V3_Game.Core.Screen(this);
     _baseentity = new BaseEntity(this);
     _maxhp      = 0;
     _maxmp      = 0;
 }
Ejemplo n.º 2
0
 public Monster()
 {
     _screen     = new ProjectX_V3_Game.Core.Screen(this);
     _baseentity = new BaseEntity(this);
 }
Ejemplo n.º 3
0
 public Sob(NPC associatedNPC)
 {
     this.associatedNPC = associatedNPC;
     _baseentity        = new BaseEntity(this);
     _screen            = new ProjectX_V3_Game.Core.Screen(this);
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Creates a new instance of GroundItem.
 /// </summary>
 /// <param name="item">The actual item info.</param>
 public GroundItem(ItemInfo item)
 {
     this.item = item;
     _screen   = new ProjectX_V3_Game.Core.Screen(this);
 }