Advertisement
Guest User

MazeIndexS.cs

a guest
Nov 9th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.37 KB | None | 0 0
  1. using UnityEngine;
  2. using System.Collections;
  3.  
  4. public class MazeIndexS {
  5.    
  6.         public int x;
  7.         public int y;
  8.        
  9.         public void MazeIndex(int x, int y)
  10.         {
  11.             this.x = x;
  12.             this.y = y;
  13.         }
  14.        
  15.        
  16.         /*public string toString()
  17.         {
  18.             return ("["+x+", "+y+"]");
  19.         }*/
  20.    
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement