Advertisement
Guest User

Untitled

a guest
Aug 19th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package
  2. {
  3.     import flash.display.MovieClip;
  4.     /**
  5.      * ...
  6.      * @author Matt
  7.      */
  8.     public class TileBase extends MovieClip
  9.     {
  10.         private var _xPosInBoard:int;
  11.         private var _yPosInBoard:int;
  12.        
  13.         public function TileBase()
  14.         {
  15.            
  16.         }
  17.        
  18.         public function get xPosInBoard():int { return _xPosInBoard; }
  19.        
  20.         public function set xPosInBoard(value:int):void
  21.         {
  22.             _xPosInBoard = value;
  23.         }
  24.        
  25.         public function get yPosInBoard():int { return _yPosInBoard; }
  26.        
  27.         public function set yPosInBoard(value:int):void
  28.         {
  29.             _yPosInBoard = value;
  30.         }
  31.     }
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement