Reputation: 47
How do I subtract Cell[3,5] from Cell[5,4]?? I have a cell Object which creates a 2D array and set warrior Object in it. I tried this but it didnot work
Cell[,] cells = new Cell[6,6];
cells[3, 5] = new Cell(warrior);
cells[5,4] = new Cell(warrior);
...
int x1 = cells[3, 5].x - cells[5, 4].x;
int x2 = cells[3, 5].y - cells[5, 4].y;
Console.WriteLine(x1);
Console.WriteLine(x2);
My Cell class is like this:
public class Cell { public int _x; public int _y; public Warrior _warrior; }
Upvotes: 1
Views: 230
Reputation: 3365
I have Write a sample code try like this..
Warrior warrior = new Warrior(25,24);
Warrior warrior1 = new Warrior(20,20);
Cell[,] cells = new Cell[6, 6];
cells[3, 5] = new Cell(warrior);
cells[5, 4] = new Cell(warrior1);
int x1 = cells[3, 5]._x - cells[5, 4]._x;
int x2 = cells[3, 5]._y - cells[5, 4]._y;
Console.WriteLine(x1);
Console.WriteLine(x2);
public class Cell
{
public Cell(Warrior warrior)
{
_x = warrior.x;
_y = warrior.y;
}
public int _x;
public int _y;
public Warrior _warrior;
}
public class Warrior
{
public Warrior(int x, int y)
{
this.x = x;
this.y = y;
}
public int x;
public int y;
}
OutPut : 5 4
Upvotes: 3