jan_flanders

Untitled

May 3rd, 2012
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. private class Test
  2. {
  3.     public var width(get_width, set_width):Float;
  4.  
  5.     public function new()
  6.     {
  7.         width = 20;
  8.     }
  9.  
  10.     private function get_width():Float
  11.     {
  12.         return width;
  13.     }
  14.  
  15.     private function set_width(value:Float):Float
  16.     {
  17.         return width = value;
  18.     }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment