public int this[Coordinate coordinate] { get { return this[coordinate.X, coordinate.Y]; } }
public Item(Coordinate position, ItemType type, int value, PowerUpType powerUpType = PowerUpType.None) { Position = position; Type = type; Value = value; PowerUpType = powerUpType; }