예제 #1
0
 public BodyPart(int[] stationary, int[,] moving)
 {
     this.notMoving = new PartDirection(stationary);
     this.moving    = new MovingPartDirection(moving);
 }
예제 #2
0
 public BodyPart(int[] stationary)
 {
     this.notMoving = new PartDirection(stationary);
     moving         = null;
 }
예제 #3
0
		public BodyPart(int[] stationary,int[,]moving)
		{	
			this.notMoving = new PartDirection(stationary);			
			this.moving = new MovingPartDirection(moving);
		}
예제 #4
0
		public BodyPart(int[] stationary)
		{
			this.notMoving=new PartDirection(stationary);
			moving=null;
		}
예제 #5
0
 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 };
 }
예제 #6
0
		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};
		}