document traits with generic names

This commit is contained in:
Matthias Mailänder
2014-10-05 17:44:11 +02:00
parent 15b358afa5
commit 6a8345b3d0
4 changed files with 5 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ using OpenRA.Traits;
namespace OpenRA.Mods.RA.Move
{
[Desc("Calculates routes for mobile units based on the A* search algorithm.", " Attach this to the world actor.")]
public class PathFinderInfo : ITraitInfo
{
public object Create(ActorInitializer init) { return new PathFinder(init.world); }