more cleanup

This commit is contained in:
Chris Forbes
2011-01-30 14:00:10 +13:00
parent 8874b6ef72
commit c3b08a60b8
3 changed files with 15 additions and 21 deletions

View File

@@ -8,6 +8,7 @@
*/
#endregion
using System;
using OpenRA.FileFormats;
using SGraphics = System.Drawing.Graphics;
@@ -26,7 +27,7 @@ namespace OpenRA.Editor
= new TileReference<byte, byte>
{
type = (byte)Resource.Info.ResourceType,
index = (byte)surface.random.Next(Resource.Info.SpriteNames.Length),
index = (byte)random.Next(Resource.Info.SpriteNames.Length),
image = (byte)Resource.Value
};
@@ -44,5 +45,7 @@ namespace OpenRA.Editor
{
surface.DrawImage(g, Resource.Bitmap, surface.GetBrushLocation());
}
Random random = new Random();
}
}