public BodyPart(int[] stationary, int[,] moving) { this.notMoving = new PartDirection(stationary); this.moving = new MovingPartDirection(moving); }
public BodyPart(int[] stationary) { this.notMoving = new PartDirection(stationary); moving = null; }
public BodyPart(int[] stationary,int[,]moving) { this.notMoving = new PartDirection(stationary); this.moving = new MovingPartDirection(moving); }
public BodyPart(int[] stationary) { this.notMoving=new PartDirection(stationary); moving=null; }
public Type1File(Type1Descriptor desc) : base(desc) { notMoving = new PartDirection(new int[] { 0, 1, 2, 3, 4, 5, 6, 7 }); moving = new PartDirection(new int[] { 8, 9, 10, 11, 12, 13, 14, 15 }); deathImages = new int[] { 16, 17, 18, 19 }; }
public Type1File(Type1Descriptor desc):base(desc) { notMoving = new PartDirection(new int[]{0,1,2,3,4,5,6,7}); moving = new PartDirection(new int[]{8,9,10,11,12,13,14,15}); deathImages = new int[]{16,17,18,19}; }