tidy up select-all-on-screen

This commit is contained in:
Chris Forbes
2011-10-22 11:30:09 +13:00
parent eec751f76a
commit e7ed9a1ff7
2 changed files with 12 additions and 22 deletions

View File

@@ -18,14 +18,7 @@ using OpenRA.Support;
namespace OpenRA.Graphics
{
[Flags]
public enum ScrollDirection
{
None = 0,
Up = 1,
Left = 2,
Down = 4,
Right = 8
}
public enum ScrollDirection { None = 0, Up = 1, Left = 2, Down = 4, Right = 8 }
public class Viewport
{