rename RallyPoint.RallyPoint to RallyPoint.Offset

This commit is contained in:
Matthias Mailänder
2015-08-05 23:31:29 +02:00
parent f11331a7cd
commit b536e677fb
8 changed files with 20 additions and 14 deletions

View File

@@ -17,8 +17,8 @@ namespace OpenRA.Mods.Common.Traits
[Desc("Used to waypoint units after production or repair is finished.")]
public class RallyPointInfo : ITraitInfo
{
public readonly CVec RallyPoint = new CVec(1, 3);
public readonly string IndicatorPalettePrefix = "player";
public readonly CVec Offset = new CVec(1, 3);
public object Create(ActorInitializer init) { return new RallyPoint(init.Self, this); }
}