Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- private class Test
- {
- public var width(get_width, set_width):Float;
- public function new()
- {
- width = 20;
- }
- private function get_width():Float
- {
- return width;
- }
- private function set_width(value:Float):Float
- {
- return width = value;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment