PropIface.as 103 B

123456
  1. package {
  2. public interface PropIface {
  3. function get x():int;
  4. function set x(value:int):void;
  5. }
  6. }