/OpenRA.Mods.RA/Buildings/LineBuild.cs

http://github.com/chrisforbes/OpenRA · C# · 21 lines · 11 code · 3 blank · 7 comment · 0 complexity · c960e3da46b18e201cdf1f0441330cc0 MD5 · raw file

  1. #region Copyright & License Information
  2. /*
  3. * Copyright 2007-2011 The OpenRA Developers (see AUTHORS)
  4. * This file is part of OpenRA, which is free software. It is made
  5. * available to you under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation. For more information,
  7. * see COPYING.
  8. */
  9. #endregion
  10. using OpenRA.Traits;
  11. namespace OpenRA.Mods.RA.Buildings
  12. {
  13. public class LineBuildInfo : TraitInfo<LineBuild>
  14. {
  15. public readonly int Range = 5;
  16. }
  17. public class LineBuild {}
  18. }