Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. namespace Pathfinding_Test
  2. {
  3.     public class Map
  4.     {
  5.         #region Private Members
  6.         private Vector2 initialPosition; //Position of top-left corner
  7.         private int dimX;
  8.         private int dimY;                //Number of cells horizontally and vertically
  9.         private Vector2 scale;
  10.  
  11.         private Cell[,] cells;           //2d-array of cells
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement