moved paradrop crap into mod dll

This commit is contained in:
Chris Forbes
2010-01-29 19:24:30 +13:00
parent f89a40f2ca
commit 3cf1ec5b45
12 changed files with 26 additions and 42 deletions

View File

@@ -1,18 +1,16 @@
using System;
using System.Collections.Generic;
using System.Collections.Generic;
using System.Linq;
using OpenRa.GameRules;
namespace OpenRa.Traits
{
class MobileInfo : ITraitInfo
public class MobileInfo : ITraitInfo
{
public readonly UnitMovementType MovementType = UnitMovementType.Wheel;
public object Create(Actor self) { return new Mobile(self); }
}
class Mobile : IIssueOrder, IResolveOrder, IOccupySpace, IMovement
public class Mobile : IIssueOrder, IResolveOrder, IOccupySpace, IMovement
{
readonly Actor self;