summaryrefslogtreecommitdiff
path: root/Penguloon/Objects/ObjectBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Penguloon/Objects/ObjectBase.cs')
-rw-r--r--Penguloon/Objects/ObjectBase.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/Penguloon/Objects/ObjectBase.cs b/Penguloon/Objects/ObjectBase.cs
index c5b17be..6474afe 100644
--- a/Penguloon/Objects/ObjectBase.cs
+++ b/Penguloon/Objects/ObjectBase.cs
@@ -162,14 +162,11 @@ namespace Penguloon.Objects
destinationRectangle: rec,
rotation: (float)rot,
origin: new Vector2(Texture.Width / 2, Texture.Height / 2));
-
- //Map.ParentScene.Main.SpriteBatch.Draw(RangeCircle,
- // destinationRectangle: new Rectangle((int)rec.X - ((int)Range), (int)rec.Y - ((int)Range), (int)Range * 2, (int)Range * 2));
}
public abstract void DrawUnique(float deltaTime);
- private Texture2D CreateCircle(int radius)
+ public Texture2D CreateCircle(int radius)
{
Texture2D texture = new Texture2D(Map.ParentScene.Main.GraphicsDevice, radius, radius);
Color[] colorData = new Color[radius * radius];