Advertisement
Guest User

Untitled

a guest
Aug 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.27 KB | None | 0 0
  1. class Cell
  2.     {
  3.         #region Private members
  4.         private Vector2 position;  //Cell position
  5.         private int sizeX, sizeY;  //Width and Height of the cell
  6.         private bool isWalkable;   //Is it walkable or not
  7.  
  8.         private Texture2D texture; //K
  9. ....
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement