cursors for engineer

This commit is contained in:
Chris Forbes
2009-12-28 19:40:56 +13:00
parent a5d450baf8
commit 1be973c18c
2 changed files with 2 additions and 0 deletions

View File

@@ -157,6 +157,7 @@ namespace OpenRa.Game
else
return Cursor.MoveBlocked;
case "Enter": return Cursor.Enter;
case "Capture": return Cursor.Capture;
case "Harvest": return Cursor.Attack; // TODO: special harvest cursor?
default:
return null;

View File

@@ -24,5 +24,6 @@ namespace OpenRa.Game
public static Cursor DeployBlocked { get { return new Cursor("deploy-blocked"); } }
public static Cursor Chronoshift { get { return new Cursor("chrono"); } }
public static Cursor C4 { get { return new Cursor("c4"); } }
public static Cursor Capture { get { return new Cursor("capture"); } }
}
}