Example #1
0
 /** Draws the indicator under the object */
 protected virtual void drawIndicator()
 {
     if (IndicatorColor != Color.clear)
     {
         var backgroundSprite = ResourceManager.GetSprite("Icons/SlotInlay");
         SmartUI.PushAndSetColor(IndicatorColor);
         SmartUI.Draw(X, Y, backgroundSprite);
         SmartUI.PopColor();
     }
 }