Example #1
0
 public BottleOfGooTarget(BottleOfGoo owner, Mobile g)
     : base(2,false,TargetFlags.None)
 {
     m_OwnerBottle = owner; // Throws the parent BottleOfGoo to the class, allowing us to use its properties as well as read back to them.
     m_Goo = m_OwnerBottle.GetGoo(); // Sets the m_Goo to the parent BottleOfGoo's goo.
 }