rename ITraitPrerequisite<T> to Requires<T>

This commit is contained in:
Chris Forbes
2011-05-04 15:17:57 +12:00
parent 8aa206ef95
commit d86e0ec522
30 changed files with 34 additions and 34 deletions

View File

@@ -8,15 +8,15 @@
*/
#endregion
using System;
using System.Collections.Generic;
using System.Linq;
using OpenRA.Traits;
using OpenRA.Mods.RA;
using System;
using System.Linq;
namespace OpenRA.Mods.Cnc
{
class RenderCargoInfo : ITraitInfo, ITraitPrerequisite<CargoInfo>
class RenderCargoInfo : ITraitInfo, Requires<CargoInfo>
{
public object Create(ActorInitializer init) { return new RenderCargo(init.self); }
}