Fix a pile of compiler warnings.

This commit is contained in:
Paul Chote
2010-11-21 12:53:04 +13:00
parent 1461309dba
commit dba7335594
8 changed files with 7 additions and 20 deletions

View File

@@ -20,7 +20,6 @@ namespace OpenRA.Mods.RA
class Husk : IOccupySpace, IFacing
{
Actor self;
[Sync]
int2 location;
@@ -31,7 +30,6 @@ namespace OpenRA.Mods.RA
public Husk(ActorInitializer init)
{
this.self = init.self;
this.location = init.Get<LocationInit,int2>();
this.Facing = init.Contains<FacingInit>() ? init.Get<FacingInit,int>() : 128;
}